blob: 375923b906f764ba911718da06af7bb93ff9b1df (
plain)
1 # Description: user-friendly dm-crypt/LUKS interface
2 # URL: http://code.google.com/p/cryptsetup/
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Packager: Tilman Sauerbeck, tilman at crux dot nu
5 # Depends on: libdevmapper, util-linux, libgcrypt, popt
6
7 name=cryptsetup
8 version=1.6.8
9 release=1
10 source=(https://kernel.org/pub/linux/utils/$name/v1.6/$name-$version.tar.xz)
11
12 build() {
13 cd $name-$version
14
15 LIBS="-lpthread" ./configure \
16 --prefix=/usr \
17 --mandir=/usr/man \
18 --disable-nls \
19 --enable-static-cryptsetup
20 make
21 make DESTDIR=$PKG install
22
23 install -d $PKG/sbin
24 mv $PKG/{usr/sbin,sbin}/cryptsetup.static
25 }
|