wok annotate gnustep-make/receipt @ rev 24036

created recipe for autoconf-archive 2021.02.19)
author Hans-G?nter Theisgen
date Sun Apr 11 16:42:15 2021 +0100 (2021-04-11)
parents 2b9f96603415
children 453c249b6219
rev   line source
pankso@4053 1 # SliTaz package receipt.
pankso@4053 2
pankso@4053 3 PACKAGE="gnustep-make"
Hans-G?nter@22865 4 VERSION="2.7.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"
Hans-G?nter@22865 9 WEB_SITE="http://www.gnustep.org/"
Hans-G?nter@22865 10
pankso@4053 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@4053 12 WGET_URL="ftp://ftp.gnustep.org/pub/gnustep/core/$TARBALL"
pankso@4053 13
pascal@14999 14 DEPENDS="make"
pascal@14999 15
pankso@4053 16 # Rules to configure and make the package.
pankso@4053 17 compile_rules()
pankso@4053 18 {
Hans-G?nter@22865 19 ./configure \
Hans-G?nter@22865 20 --prefix=/usr \
Hans-G?nter@22865 21 --with-layout=fhs \
pankso@4053 22 $CONFIGURE_ARGS &&
Hans-G?nter@22865 23 make &&
Hans-G?nter@22865 24 make DESTDIR=$DESTDIR install
pankso@4053 25 }
pankso@4053 26
pankso@4053 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@4053 28 genpkg_rules()
pankso@4053 29 {
pankso@4053 30 mkdir -p $fs/usr/share
Hans-G?nter@22865 31
Hans-G?nter@22865 32 cp -a $install/etc $fs
Hans-G?nter@22865 33 cp -a $install/usr/bin $fs/usr
Hans-G?nter@22865 34 cp -a $install/usr/share/GNUstep $fs/usr/share
pankso@4053 35 }