31 lines
966 B
Text
31 lines
966 B
Text
# Template file for 'cryptsetup'
|
|
pkgname=cryptsetup
|
|
version=1.6.4
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--enable-pwquality --with-libgcrypt-prefix=${XBPS_CROSS_BASE}/usr"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="popt-devel libuuid-devel device-mapper-devel libgcrypt-devel libpwquality-devel"
|
|
short_desc="Setup virtual encryption devices under dm-crypt Linux"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="GPL-3"
|
|
homepage="http://code.google.com/p/cryptsetup"
|
|
distfiles="https://www.kernel.org/pub/linux/utils/cryptsetup/v1.6/${pkgname}-${version}.tar.xz"
|
|
checksum=70b8e86eef94bbb4441ad38460d87138130d7aaaafe5d01131c3ba50b9f0dca0
|
|
|
|
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"
|
|
}
|
|
}
|