opt/cryptsetup/Pkgfile

25 lines
566 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: user-friendly dm-crypt/LUKS interface
# URL: http://code.google.com/p/cryptsetup/
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
# Depends on: libdevmapper, util-linux-ng, libgcrypt, popt
2006-02-23 16:26:10 +01:00
name=cryptsetup
2011-11-20 15:56:12 +01:00
version=1.4.1
release=1
2009-08-07 15:35:44 +02:00
source=(http://$name.googlecode.com/files/$name-$version.tar.bz2)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
2006-02-23 16:26:10 +01:00
./configure \
--prefix=/usr \
--mandir=/usr/man \
--disable-nls \
--enable-static-cryptsetup
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
install -d $PKG/sbin
mv $PKG/{usr/sbin,sbin}/cryptsetup.static
2006-02-23 16:26:10 +01:00
}