wok view lessfs/receipt @ rev 16712

sakura: fix window icon in better way
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu May 29 09:17:02 2014 +0300 (2014-05-29)
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 }