wok-next diff burp/receipt @ rev 20545
vmtouch: create $install/usr/bin path
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Apr 03 15:08:22 2018 +0200 (2018-04-03) |
parents | e6615350078d |
children | 0eae38b89b8d |
line diff
1.1 --- a/burp/receipt Wed Feb 28 16:28:07 2018 +0200 1.2 +++ b/burp/receipt Tue Apr 03 15:08:22 2018 +0200 1.3 @@ -1,4 +1,4 @@ 1.4 -# SliTaz package receipt. 1.5 +# SliTaz package receipt v2. 1.6 1.7 PACKAGE="burp" 1.8 VERSION="1.3.10" 1.9 @@ -7,27 +7,22 @@ 1.10 MAINTAINER="pascal.bellard@slitaz.org" 1.11 LICENSE="GPL3" 1.12 WEB_SITE="http://burp.grke.net/" 1.13 + 1.14 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.15 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.16 1.17 -DEPENDS="acl openssl attr popt ncurses zlib bzlib gcc-lib-base" 1.18 BUILD_DEPENDS="librsync acl-dev openssl-dev attr-dev popt-dev ncurses-dev \ 1.19 bzip2-dev zlib-dev" 1.20 1.21 -# Rules to configure and make the package. 1.22 -compile_rules() 1.23 -{ 1.24 - ./configure --prefix=/usr \ 1.25 +compile_rules() { 1.26 + ./configure \ 1.27 --sbindir=/usr/sbin \ 1.28 - --sysconfdir=/etc \ 1.29 - --mandir=/usr/share/man \ 1.30 - --infodir=/usr/share/info \ 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 - cp -a $install/* $fs 1.41 +genpkg_rules() { 1.42 + copy @std 1.43 + DEPENDS="acl openssl attr popt ncurses zlib bzlib gcc-lib-base" 1.44 }