wok-6.x annotate gnustep-make/receipt @ rev 22592
updated cherokee packages (1.2.101 -> 1.2.104)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Jan 07 16:51:34 2020 +0100 (2020-01-07) |
parents | 9ce1eedbdea6 |
children | 3a42ed2154cd |
rev | line source |
---|---|
pankso@4053 | 1 # SliTaz package receipt. |
pankso@4053 | 2 |
pankso@4053 | 3 PACKAGE="gnustep-make" |
slaxemulator@10263 | 4 VERSION="2.6.0" |
pankso@4053 | 5 CATEGORY="development" |
pankso@4053 | 6 SHORT_DESC="GNUstep make package." |
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@14999 | 13 DEPENDS="make" |
pascal@14999 | 14 |
pankso@4053 | 15 # Rules to configure and make the package. |
pankso@4053 | 16 compile_rules() |
pankso@4053 | 17 { |
pankso@4053 | 18 cd $src |
pankso@4053 | 19 ./configure \ |
pankso@4053 | 20 --prefix=/usr \ |
pankso@4053 | 21 --with-layout=fhs \ |
pankso@4053 | 22 $CONFIGURE_ARGS && |
pankso@10443 | 23 make && make DESTDIR=$DESTDIR install |
pankso@4053 | 24 } |
pankso@4053 | 25 |
pankso@4053 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@4053 | 27 genpkg_rules() |
pankso@4053 | 28 { |
pankso@4053 | 29 mkdir -p $fs/usr/share |
pascal@14999 | 30 cp -a $install/etc $fs |
pascal@14999 | 31 cp -a $install/usr/bin $fs/usr |
pascal@14999 | 32 cp -a $install/usr/share/GNUstep $fs/usr/share |
pankso@4053 | 33 } |