wok-current diff jfsutils/receipt @ rev 15185
linux-source: add mirror src fallback
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Aug 23 18:59:48 2013 +0000 (2013-08-23) |
parents | 73641efed1cc |
children | eb7ee081259f |
line diff
1.1 --- a/jfsutils/receipt Mon Apr 23 16:30:27 2012 +0200 1.2 +++ b/jfsutils/receipt Fri Aug 23 18:59:48 2013 +0000 1.3 @@ -5,12 +5,14 @@ 1.4 CATEGORY="system-tools" 1.5 SHORT_DESC="Utilities for manipulating jfs file-system." 1.6 MAINTAINER="pascal.bellard@slitaz.org" 1.7 +LICENSE="GPL3" 1.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.9 WEB_SITE="http://jfs.sourceforge.net/" 1.10 WGET_URL="${WEB_SITE}project/pub/$TARBALL" 1.11 +TAGS="filesystem" 1.12 + 1.13 DEPENDS="util-linux-uuid" 1.14 BUILD_DEPENDS="e2fsprogs-dev" 1.15 -TAGS="filesystem" 1.16 1.17 # Rules to configure and make the package. 1.18 compile_rules() 1.19 @@ -19,13 +21,13 @@ 1.20 ./configure --prefix=/usr --infodir=/usr/share/info \ 1.21 --mandir=/usr/share/man $CONFIGURE_ARGS && 1.22 make && 1.23 - make DESTDIR=$PWD/_pkg install 1.24 + make DESTDIR=$DESTDIR install 1.25 } 1.26 1.27 # Rules to gen a SliTaz package suitable for Tazpkg. 1.28 genpkg_rules() 1.29 { 1.30 mkdir -p $fs/usr 1.31 - cp -a $_pkg/usr/sbin $fs/usr 1.32 + cp -a $install/usr/sbin $fs/usr 1.33 } 1.34