wok-current diff fox14/receipt @ rev 4775
get-virtualbox: add missing file.
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Wed Jan 13 13:44:59 2010 +0100 (2010-01-13) |
parents | |
children | 9f19aee613be |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/fox14/receipt Wed Jan 13 13:44:59 2010 +0100 1.3 @@ -0,0 +1,35 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="fox14" 1.7 +SOURCE="fox" 1.8 +VERSION="1.4.35" 1.9 +CATEGORY="x-window" 1.10 +SHORT_DESC="Fox toolkit." 1.11 +MAINTAINER="pankso@slitaz.org" 1.12 +TARBALL="$SOURCE-$VERSION.tar.gz" 1.13 +DEPENDS="libpng jpeg tiff xorg-libXft bzlib libgl libglu" 1.14 +BUILD_DEPENDS="$DEPENDS libpng-dev jpeg-dev tiff-dev xorg-libXft-dev" 1.15 +SUGGESTED="adie calculator pathfinder shutterbug" 1.16 +WEB_SITE="http://www.fox-toolkit.org/" 1.17 +WGET_URL="http://www.fox-toolkit.org/ftp/$TARBALL" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + cd $src 1.23 + ./configure \ 1.24 + --prefix=/usr \ 1.25 + --mandir=/usr/share/man \ 1.26 + --with-xft \ 1.27 + $CONFIGURE_ARGS && 1.28 + make && 1.29 + make DESTDIR=$PWD/_pkg install 1.30 +} 1.31 + 1.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.33 +genpkg_rules() 1.34 +{ 1.35 + mkdir -p $fs/usr/lib 1.36 + cp -a $_pkg/usr/bin $fs/usr 1.37 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.38 +}