wok-next diff hashalot/receipt @ rev 21093

garcon, libacpi, mypaint: make shared libs executables to correct determine architecture (no "noarch")
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Dec 29 17:03:13 2018 +0200 (2018-12-29)
parents de49f29b101e
children
line diff
     1.1 --- a/hashalot/receipt	Thu Dec 05 15:25:09 2013 +0000
     1.2 +++ b/hashalot/receipt	Sat Dec 29 17:03:13 2018 +0200
     1.3 @@ -3,25 +3,23 @@
     1.4  PACKAGE="hashalot"
     1.5  VERSION="0.3"
     1.6  CATEGORY="system-tools"
     1.7 -SHORT_DESC="Passphrase to binary key filter."
     1.8 +SHORT_DESC="Passphrase to binary key filter"
     1.9  MAINTAINER="pascal.bellard@slitaz.org"
    1.10  LICENSE="GPL2"
    1.11 +WEB_SITE="http://www.paranoiacs.org/~sluskyb/hacks/hashalot/"
    1.12 +
    1.13  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 -WEB_SITE="http://www.paranoiacs.org/~sluskyb/hacks/hashalot"
    1.15 -WGET_URL="$WEB_SITE/$TARBALL"
    1.16 +WGET_URL="$WEB_SITE$TARBALL"
    1.17  
    1.18 -# Rules to configure and make the package.
    1.19 -compile_rules()
    1.20 -{
    1.21 -	cd $src
    1.22 -	./configure --prefix=/usr $CONFIGURE_ARGS &&
    1.23 +compile_rules() {
    1.24 +	./configure \
    1.25 +		--prefix=/usr \
    1.26 +		$CONFIGURE_ARGS &&
    1.27  	make &&
    1.28 -	make DESTDIR=$DESTDIR install
    1.29 +	make DESTDIR=$install install
    1.30  }
    1.31  
    1.32 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.33 -genpkg_rules()
    1.34 -{
    1.35 +genpkg_rules() {
    1.36  	mkdir -p $fs/usr
    1.37  	cp -a $install/usr/sbin $fs/usr
    1.38  }