wok view cryptsetup/receipt @ rev 12626

gmpc: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 29 12:37:38 2012 +0200 (2012-04-29)
parents 73641efed1cc
children 1d9956c989ec
line source
1 # SliTaz package receipt.
3 PACKAGE="cryptsetup"
4 VERSION="1.3.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="dm-crypt setup tool for encryption of block devices"
7 MAINTAINER="b1+slitaz@nagel.org"
8 DEPENDS="e2fsprogs popt libgcrypt libdevmapper"
9 BUILD_DEPENDS="e2fsprogs-dev popt-dev libgcrypt libgcrypt-dev libdevmapper \
10 libdevmapper-dev util-linux-uuid util-linux-ng-uuid-dev popt util-linux-uuid"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://code.google.com/p/$PACKAGE"
13 WGET_URL="http://cryptsetup.googlecode.com/files/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/sbin $fs/usr
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 }