wok view cromfs/receipt @ rev 1831

encfs: fix BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Dec 09 20:39:44 2008 +0000 (2008-12-09)
parents 3f5d11d71f9e
children ca15fff92039
line source
1 # SliTaz package receipt.
3 PACKAGE="cromfs"
4 VERSION="1.5.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="Compressed read only filesystem implemented with FUSE."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 BUILD_DEPENDS="fuse-dev"
9 DEPENDS="fuse lzma"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://bisqwit.iki.fi/source/cromts.html"
12 WGET_URL="http://bisqwit.iki.fi/src/arch/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 for i in FBLOCK_CACHE_MAX_SIZE.u openmp.u ; do
19 [ -f done.$i ] && continue
20 patch -p1 < ../stuff/$i
21 touch done.$i
22 done
23 chmod +x configure
24 ./configure --prefix=/usr $CONFIGURE_ARGS &&
25 make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/bin $fs/bin
32 cp $src/install/progs/mkcromfs $fs/usr/bin
33 cp $src/install/progs/cromfs-driver-static $fs/bin/cromfs-driver
34 cp $src/install/progs/unmkcromfs $fs/bin
35 }