opt/cryptsetup/Pkgfile
2009-08-18 21:01:46 +02:00

25 lines
585 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.0.7
release=2
source=(http://$name.googlecode.com/files/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--mandir=/usr/man \
--disable-nls
make
make DESTDIR=$PKG install
./configure --prefix=/usr --enable-static
make
install -D -m 755 src/cryptsetup $PKG/sbin/cryptsetup.static
}