summaryrefslogtreecommitdiff
path: root/cryptsetup/Pkgfile
blob: eeeed6f53aded0fcf508b18ce40951e1f6115cfb (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 # Packager: Tilman Sauerbeck, tilman at crux dot nu
    5 # Depends on: libdevmapper,  util-linux, libgcrypt, popt
    6 
    7 name=cryptsetup
    8 version=1.7.5
    9 release=1
   10 source=(https://kernel.org/pub/linux/utils/$name/v1.7/$name-$version.tar.xz)
   11 
   12 build() {
   13     cd $name-$version
   14 
   15     LIBS="-lpthread" ./configure \
   16       --prefix=/usr \
   17       --disable-nls \
   18       --enable-static-cryptsetup
   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