opt/cryptsetup/Pkgfile
2011-11-20 15:56:38 +01:00

25 lines
566 B
Plaintext

# 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
name=cryptsetup
version=1.4.1
release=1
source=(http://$name.googlecode.com/files/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--mandir=/usr/man \
--disable-nls \
--enable-static-cryptsetup
make
make DESTDIR=$PKG install
install -d $PKG/sbin
mv $PKG/{usr/sbin,sbin}/cryptsetup.static
}