wok view lessfs/receipt @ rev 16258

ARM: add webkit (cross compile in my local chroot :-) and needed deps
author Christophe Lincoln <pankso@slitaz.org>
date Sat Apr 05 06:13:29 2014 +0200 (2014-04-05)
parents 9f057413fee5
children bfaece9eb116
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 LICENSE="GPL3"
9 WEB_SITE="http://www.lessfs.com/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="filesystem"
14 DEPENDS="fuse db mhash tokyocabinet"
15 BUILD_DEPENDS="fuse-dev db-dev mhash-dev tokyocabinet-dev pkg-config"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 --with-berkeleydb \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cp -a $install/usr/*bin $fs
33 }