wok-undigest view lessfs/receipt @ rev 869

Add mikmod
author Paul Issott <paul@slitaz.org>
date Wed Oct 24 19:01:15 2012 +0100 (2012-10-24)
parents 034708e31e13
children e732003669bd
line source
1 # SliTaz package receipt.
3 PACKAGE="lessfs"
4 VERSION="1.5.12"
5 CATEGORY="system-tools"
6 SHORT_DESC="A high performance inline data deduplicating filesystem."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WEB_SITE="http://www.lessfs.com/"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
11 TAGS="filesystem"
13 DEPENDS="fuse db"
14 BUILD_DEPENDS="fuse-dev db-dev mhash-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 #--with-snappy
20 cd $src
21 ./configure --prefix=/usr --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 --with-berkeleydb \
24 --without-tokyocabinet \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $_pkg/* $fs
34 }