blob: 815b9424dab4cadbc907c14ac049278e25d697e4 (
plain)
1 # Description: user-friendly dm-crypt/LUKS interface
2 # URL: https://gitlab.com/cryptsetup/cryptsetup
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: libdevmapper openssl popt json-c
5
6 name=cryptsetup
7 version=2.3.3
8 release=1
9 source=(https://kernel.org/pub/linux/utils/$name/v${version%.*}/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13
14 ./configure \
15 --prefix=/usr \
16 --disable-nls \
17 --enable-static-cryptsetup
18 make
19 make DESTDIR=$PKG install
20
21 install -d $PKG/sbin
22 mv $PKG/{usr/sbin,sbin}/cryptsetup.static
23 }
|