opt/cryptsetup/Pkgfile

26 lines
619 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/
2012-06-20 15:50:39 +02:00
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: 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
2012-07-14 19:58:56 +02:00
version=1.5.0
2011-11-20 15:56:12 +01:00
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
}