wok view encfs/receipt @ rev 3638

encfs: fix tarball name
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 03 17:43:52 2009 +0200 (2009-07-03)
parents e77b2e1d737e
children 55987a3e2196
line source
1 # SliTaz package receipt.
3 PACKAGE="encfs"
4 VERSION="1.5-2"
5 CATEGORY="security"
6 SHORT_DESC="Encryption filesystem for FUSE."
7 MAINTAINER="b1+slitaz@nagel.org"
8 DEPENDS="fuse rlog openssl libboost-system libboost-serialization libboost-filesystem"
9 BUILD_DEPENDS="fuse fuse-dev rlog rlog-dev openssl-dev libboost-system-dev \
10 libboost-serialization-dev libboost-filesystem-dev"
11 TARBALL="$PACKAGE-$VERSION.tgz"
12 WEB_SITE="http://www.arg0.net/encfs"
13 WGET_URL="http://encfs.googlecode.com/files/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 mv $PACKAGE-${VERSION%-*} $src 2> /dev/null
19 cd $src
20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$src/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }