21 lines
472 B
Plaintext
21 lines
472 B
Plaintext
# Tanım: kullanıcı dostu dm-crypt/LUKS arayüzü
|
||
# URL: https://gitlab.com/cryptsetup/cryptsetup
|
||
# Paketçi: milisarge
|
||
# Gerekler: libgcrypt popt
|
||
|
||
isim=cryptsetup
|
||
surum=1.7.5
|
||
devir=1
|
||
kaynak=(https://kernel.org/pub/linux/utils/$isim/v1.7/$isim-$surum.tar.xz)
|
||
|
||
derle() {
|
||
cd $isim-$surum
|
||
LIBS="-lpthread" ./configure \
|
||
--prefix=/usr \
|
||
--enable-cryptsetup-reencrypt \
|
||
-disable-nls \
|
||
--disable-static
|
||
make
|
||
make DESTDIR=$PKG install
|
||
}
|