wok-6.x annotate gnustep-gui/receipt @ rev 16718
Add pifmrds (does not build yet)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Jun 01 17:53:40 2014 +0000 (2014-06-01) |
parents | 3de1f0f3086f |
children | 8417cbe6fdae |
rev | line source |
---|---|
pankso@4053 | 1 # SliTaz package receipt. |
pankso@4053 | 2 |
pankso@4053 | 3 PACKAGE="gnustep-gui" |
slaxemulator@10265 | 4 VERSION="0.20.0" |
pankso@4053 | 5 CATEGORY="x-window" |
pankso@4053 | 6 SHORT_DESC="GNUstep GUI class library." |
pankso@4053 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@14999 | 8 LICENSE="GPL3" |
pankso@4053 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@4053 | 10 WEB_SITE="http://www.gnustep.org/" |
pankso@4053 | 11 WGET_URL="ftp://ftp.gnustep.org/pub/gnustep/core/$TARBALL" |
pankso@4053 | 12 |
pascal@13213 | 13 DEPENDS="gnustep-base audiofile aspell giflib portaudio cups libcomerr3 \ |
pascal@13213 | 14 libtasn1 jpeg tiff libpng" |
pankso@10009 | 15 BUILD_DEPENDS="gnustep-make gnustep-base-dev audiofile-dev aspell-dev giflib-dev \ |
pascal@13213 | 16 portaudio-dev cups-dev libtasn1-dev tar jpeg-dev tiff-dev libpng-dev" |
pankso@10009 | 17 |
pankso@4053 | 18 # Rules to configure and make the package. |
pankso@4053 | 19 compile_rules() |
pankso@4053 | 20 { |
pankso@4053 | 21 cd $src |
pankso@4053 | 22 ./configure \ |
pankso@4053 | 23 --prefix=/usr \ |
pankso@4053 | 24 $CONFIGURE_ARGS && |
pankso@10443 | 25 make && make DESTDIR=$DESTDIR install |
pankso@4053 | 26 } |
pankso@4053 | 27 |
pankso@4053 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@4053 | 29 genpkg_rules() |
pankso@4053 | 30 { |
pankso@4053 | 31 mkdir -p $fs/usr/lib |
pascal@14999 | 32 cp -a $install/usr/bin $fs/usr |
pascal@14999 | 33 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@14999 | 34 cp -a $install/usr/lib/GNUstep $fs/usr/lib |
pankso@4053 | 35 } |