summaryrefslogtreecommitdiff
path: root/cryptsetup/Pkgfile
blob: 65409cb86c5250870b7a9d0ce6b807d4975407a3 (plain)
    1 # Description: user-friendly dm-crypt/LUKS interface
    2 # URL: https://gitlab.com/cryptsetup/cryptsetup
    3 # Maintainer: CRUX System Team, core-ports at crux dot nu
    4 # Depends on: libdevmapper openssl popt json-c
    5 
    6 name=cryptsetup
    7 version=2.4.3
    8 release=1
    9 source=(https://www.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 		--disable-ssh-token
   19 	make
   20 	make DESTDIR=$PKG install
   21 
   22 	install -d $PKG/sbin
   23 	mv $PKG/{usr/sbin,sbin}/cryptsetup.static
   24 }

Generated by cgit