52 lines
1.4 KiB
Bash
52 lines
1.4 KiB
Bash
# Template file for 'cryptsetup'
|
|
pkgname=cryptsetup
|
|
version=2.0.1
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--with-crypto_backend=openssl $(vopt_enable pwquality)
|
|
--enable-cryptsetup-reencrypt"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="popt-devel libuuid-devel device-mapper-devel libressl-devel
|
|
$(vopt_if pwquality libpwquality-devel) json-c-devel"
|
|
short_desc="Setup virtual encryption devices under Linux dm-crypt"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2"
|
|
homepage="https://gitlab.com/cryptsetup/cryptsetup"
|
|
distfiles="${KERNEL_SITE}/utils/cryptsetup/v${version%.*}/${pkgname}-${version}.tar.xz"
|
|
checksum=41d188092c52e23d576af41cf0cfe0555d8f7efa21598d4c57c56ea1b6d9c975
|
|
|
|
build_options="pwquality"
|
|
desc_option_pwquality="Enable support for checking password quality via libpwquality"
|
|
|
|
case $XBPS_TARGET_MACHINE in
|
|
*-musl)
|
|
configure_args+=" --enable-static-cryptsetup"
|
|
cryptsetup-static_package() {
|
|
short_desc+=" - static cryptsetup"
|
|
pkg_install() {
|
|
vmove "usr/bin/*.static"
|
|
}
|
|
}
|
|
;;
|
|
esac
|
|
|
|
libcryptsetup_package() {
|
|
short_desc+=" - runtime libraries"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
cryptsetup-devel_package() {
|
|
depends="libcryptsetup>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
case $XBPS_TARGET_MACHINE in
|
|
*-musl)
|
|
vmove "usr/lib/*.a"
|
|
;;
|
|
esac
|
|
}
|
|
}
|