wok view cromfs/receipt @ rev 874

Add: gperf
author Christophe Lincoln <pankso@slitaz.org>
date Fri Jun 06 15:14:57 2008 +0200 (2008-06-06)
parents
children 65d3dfc87776
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 patch -p1 < ../stuff/FBLOCK_CACHE_MAX_SIZE.u
19 patch -p1 < ../stuff/openmp.u
20 chmod +x configure
21 ./configure --prefix=/usr $CONFIGURE_ARGS
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin $fs/bin
29 cp $src/install/progs/mkcromfs $fs/usr/bin
30 cp $src/install/progs/cromfs-driver-static $fs/bin/cromfs-driver
31 cp $src/install/progs/unmkcromfs $fs/bin
32 }