mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-01-14 00:33:30 +00:00
13 lines
408 B
Bash
Executable File
13 lines
408 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# source: https://www.kernel.org/pub/linux/utils/cryptsetup/v2.0/cryptsetup-2.0.4.tar.xz
|
|
|
|
patch -Np0 -i ../cryptsetup-2.0.4-flush-stdout.patch
|
|
./configure --prefix=/usr \
|
|
--with-crypto_backend=openssl \
|
|
--build=x86_64-linux-musl --enable-cryptsetup-reencrypt --enable-libargon2 &&
|
|
|
|
read -p "Compile? " && make -j4 &&
|
|
read -p "Install? " && sudo -S porg -lD "make -j1 install"
|
|
|