wok diff gnustep-make/receipt @ rev 24015
Up tazinst (112)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Feb 25 10:56:54 2021 +0000 (2021-02-25) |
parents | 2b9f96603415 |
children | 453c249b6219 |
line diff
1.1 --- a/gnustep-make/receipt Sat Aug 10 13:52:56 2013 +0000 1.2 +++ b/gnustep-make/receipt Thu Feb 25 10:56:54 2021 +0000 1.3 @@ -1,13 +1,14 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="gnustep-make" 1.7 -VERSION="2.6.0" 1.8 +VERSION="2.7.0" 1.9 CATEGORY="development" 1.10 SHORT_DESC="GNUstep make package." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 LICENSE="GPL3" 1.13 +WEB_SITE="http://www.gnustep.org/" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.16 -WEB_SITE="http://www.gnustep.org/" 1.17 WGET_URL="ftp://ftp.gnustep.org/pub/gnustep/core/$TARBALL" 1.18 1.19 DEPENDS="make" 1.20 @@ -15,19 +16,20 @@ 1.21 # Rules to configure and make the package. 1.22 compile_rules() 1.23 { 1.24 - cd $src 1.25 - ./configure \ 1.26 - --prefix=/usr \ 1.27 - --with-layout=fhs \ 1.28 + ./configure \ 1.29 + --prefix=/usr \ 1.30 + --with-layout=fhs \ 1.31 $CONFIGURE_ARGS && 1.32 - make && make DESTDIR=$DESTDIR install 1.33 + make && 1.34 + make DESTDIR=$DESTDIR install 1.35 } 1.36 1.37 # Rules to gen a SliTaz package suitable for Tazpkg. 1.38 genpkg_rules() 1.39 { 1.40 mkdir -p $fs/usr/share 1.41 - cp -a $install/etc $fs 1.42 - cp -a $install/usr/bin $fs/usr 1.43 - cp -a $install/usr/share/GNUstep $fs/usr/share 1.44 + 1.45 + cp -a $install/etc $fs 1.46 + cp -a $install/usr/bin $fs/usr 1.47 + cp -a $install/usr/share/GNUstep $fs/usr/share 1.48 }