wok rev 15143
Up cromfs (1.5.10.1)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Aug 15 12:33:36 2013 +0000 (2013-08-15) |
parents | 34111a616f4e |
children | 4e02d9160644 |
files | cromfs/receipt |
line diff
1.1 --- a/cromfs/receipt Thu Aug 15 11:41:58 2013 +0000 1.2 +++ b/cromfs/receipt Thu Aug 15 12:33:36 2013 +0000 1.3 @@ -1,17 +1,19 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="cromfs" 1.7 -VERSION="1.5.9.1" 1.8 +VERSION="1.5.10.1" 1.9 CATEGORY="system-tools" 1.10 SHORT_DESC="Compressed read only filesystem implemented with FUSE." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 -DEPENDS="fuse lzma lzo libgomp" 1.13 -BUILD_DEPENDS="$DEPENDS fuse-dev lzo-dev pkg-config coreutils-file-format perl" 1.14 +LICENSE="GPL3" 1.15 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.16 WEB_SITE="http://bisqwit.iki.fi/source/cromfs.html" 1.17 WGET_URL="http://bisqwit.iki.fi/src/arch/$TARBALL" 1.18 PROVIDE="cromfs-or-squashfs" 1.19 1.20 +DEPENDS="fuse lzma lzo libgomp" 1.21 +BUILD_DEPENDS="$DEPENDS fuse-dev lzo-dev pkg-config coreutils-file-format perl" 1.22 + 1.23 # Rules to configure and make the package. 1.24 compile_rules() 1.25 { 1.26 @@ -21,19 +23,19 @@ 1.27 ./configure \ 1.28 --prefix=/usr \ 1.29 $CONFIGURE_ARGS && 1.30 - make 1.31 - mkdir -p $PWD/_pkg/bin $PWD/_pkg/usr/bin 1.32 - cp $src/cromfs-driver $PWD/_pkg/bin 1.33 + make 2>&1 | grep -v cromfs-driver-static 1.34 + mkdir -p $DESTDIR/bin $DESTDIR/usr/bin 1.35 + cp $src/cromfs-driver $DESTDIR/bin 1.36 # Maybe have a plited packages (cromfs-static) 1.37 #cp $src/cromfs-driver-static $PWD/_pkg/bin/cromfs-driver 1.38 - cp $src/util/cvcromfs $PWD/_pkg/usr/bin 1.39 - cp $src/util/mkcromfs $PWD/_pkg/usr/bin 1.40 - cp $src/util/unmkcromfs $PWD/_pkg/bin 1.41 + cp $src/util/cvcromfs $DESTDIR/usr/bin 1.42 + cp $src/util/mkcromfs $DESTDIR/usr/bin 1.43 + cp $src/util/unmkcromfs $DESTDIR/bin 1.44 } 1.45 1.46 # Rules to gen a SliTaz package suitable for Tazpkg. 1.47 genpkg_rules() 1.48 { 1.49 - cp -a $_pkg/usr $fs 1.50 - cp -a $_pkg/bin $fs 1.51 + cp -a $install/usr $fs 1.52 + cp -a $install/bin $fs 1.53 }