crux-musl

Unnamed repository; edit this file 'description' to name the repository.
git clone https://codeberg.org/emmett1/crux-musl
Log | Files | Refs | README | LICENSE

Pkgfile (598B)


      1 # Description: user-friendly dm-crypt/LUKS interface
      2 # URL: https://gitlab.com/cryptsetup/cryptsetup
      3 # Maintainer: Emmett1, emmett1 dot 2miligrams at protonmail dot com
      4 # Depends on: json-c libdevmapper openssl popt
      5 
      6 name=cryptsetup
      7 version=2.8.0
      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 	prt-get isinst asciidoctor || PKGMK_CRYPTSETUP+=' --disable-asciidoc'
     15 
     16 	./configure $PKGMK_CRYPTSETUP \
     17 		--prefix=/usr \
     18 		--disable-nls \
     19 		--disable-static \
     20 		--disable-ssh-token
     21 	make
     22 	make DESTDIR=$PKG install
     23 }