wok-current annotate fox/receipt @ rev 15026
sylpheed: fix genpkg_rules
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Aug 11 22:07:47 2013 +0000 (2013-08-11) |
parents | 76b72f1ad63c |
children | aaf121138b7d |
rev | line source |
---|---|
pankso@2779 | 1 # SliTaz package receipt. |
pankso@2779 | 2 |
pankso@2779 | 3 PACKAGE="fox" |
samuel_trassare@13414 | 4 VERSION="1.6.46" |
pankso@2779 | 5 CATEGORY="x-window" |
pankso@2779 | 6 SHORT_DESC="Fox toolkit." |
pankso@2779 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@14996 | 8 LICENSE="LGPL2.1" |
pankso@2779 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@2779 | 10 SUGGESTED="adie calculator pathfinder shutterbug" |
pankso@2779 | 11 WEB_SITE="http://www.fox-toolkit.org/" |
pascal@12724 | 12 WGET_URL="http://ftp.fox-toolkit.org/pub/$TARBALL" |
pankso@2779 | 13 |
pascal@13796 | 14 DEPENDS="libpng jpeg tiff xorg-libXft bzlib mesa libglu-mesa xorg-libXcursor \ |
pascal@13796 | 15 xorg-libXrandr xorg-libXxf86vm xorg-libXdamage libdrm jbigkit" |
pascal@13796 | 16 BUILD_DEPENDS="$DEPENDS libpng-dev jpeg-dev tiff-dev xorg-libXft-dev mesa-dev \ |
pascal@14997 | 17 libglu-mesa-dev freetype-dev fontconfig-dev expat-dev libxml2-dev" |
pascal@13796 | 18 |
pankso@2779 | 19 # Rules to configure and make the package. |
pankso@2779 | 20 compile_rules() |
pankso@2779 | 21 { |
pankso@2779 | 22 cd $src |
pankso@2779 | 23 ./configure \ |
pankso@2779 | 24 --prefix=/usr \ |
pankso@2779 | 25 --mandir=/usr/share/man \ |
pankso@2779 | 26 --with-xft \ |
pankso@2779 | 27 $CONFIGURE_ARGS && |
gokhlayeh@11574 | 28 make $MAKEFLAGS && |
pascal@13812 | 29 make DESTDIR=$DESTDIR install |
pankso@2779 | 30 } |
pankso@2779 | 31 |
pankso@2779 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@2779 | 33 genpkg_rules() |
pankso@2779 | 34 { |
pankso@2779 | 35 mkdir -p $fs/usr/lib |
pascal@13796 | 36 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@2779 | 37 } |