wok-next diff sharutils/receipt @ rev 20974

Fix python-shapely build
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Sep 23 04:34:15 2018 +0300 (2018-09-23)
parents 36158d17fa8a
children f48456621a9d
line diff
     1.1 --- a/sharutils/receipt	Mon Jan 19 12:30:35 2015 +0100
     1.2 +++ b/sharutils/receipt	Sun Sep 23 04:34:15 2018 +0300
     1.3 @@ -1,29 +1,25 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="sharutils"
     1.8 -VERSION="4.14"
     1.9 +VERSION="4.15.2"
    1.10  CATEGORY="utilities"
    1.11 -SHORT_DESC="makes 'shar' shell archives out of many files."
    1.12 +SHORT_DESC="Makes 'shar' shell archives out of many files"
    1.13  MAINTAINER="pascal.bellard@slitaz.org"
    1.14  LICENSE="GPL3"
    1.15 +WEB_SITE="https://www.gnu.org/software/sharutils/"
    1.16 +LFS="http://www.linuxfromscratch.org/blfs/view/stable/general/sharutils.html"
    1.17 +
    1.18  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.19 -WEB_SITE="https://www.gnu.org/software/sharutils/"
    1.20  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    1.21  
    1.22 -# Rules to configure and make the package.
    1.23 -compile_rules()
    1.24 -{
    1.25 -	./configure --prefix=/usr \
    1.26 -		--infodir=/usr/share/info \
    1.27 -		--mandir=/usr/share/man \
    1.28 -		$CONFIGURE_ARGS &&
    1.29 +BUILD_DEPENDS="gettext"
    1.30 +
    1.31 +compile_rules() {
    1.32 +	./configure $CONFIGURE_ARGS &&
    1.33  	make &&
    1.34 -	make DESTDIR=$DESTDIR install
    1.35 +	make install
    1.36  }
    1.37  
    1.38 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.39 -genpkg_rules()
    1.40 -{
    1.41 -	mkdir -p $fs/usr
    1.42 -	cp -a $install/usr/bin $fs/usr
    1.43 +genpkg_rules() {
    1.44 +	copy @std
    1.45  }