2012-03-15 10:59:21 +01:00
|
|
|
# Template file for 'cryptsetup'
|
|
|
|
pkgname=cryptsetup
|
2014-08-23 12:51:09 +02:00
|
|
|
version=1.6.6
|
2014-09-05 00:36:04 +02:00
|
|
|
revision=3
|
2012-03-15 10:59:21 +01:00
|
|
|
build_style=gnu-configure
|
2014-08-29 10:49:02 +02:00
|
|
|
configure_args="--with-crypto_backend=openssl"
|
2013-03-24 10:21:58 +01:00
|
|
|
hostmakedepends="pkg-config"
|
2014-08-29 10:49:02 +02:00
|
|
|
makedepends="popt-devel libuuid-devel device-mapper-devel libressl-devel"
|
2012-03-15 10:59:21 +01:00
|
|
|
short_desc="Setup virtual encryption devices under dm-crypt Linux"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
license="GPL-3"
|
2012-06-30 16:36:56 +02:00
|
|
|
homepage="http://code.google.com/p/cryptsetup"
|
2014-02-28 09:22:21 +01:00
|
|
|
distfiles="https://www.kernel.org/pub/linux/utils/cryptsetup/v1.6/${pkgname}-${version}.tar.xz"
|
2014-08-23 12:51:09 +02:00
|
|
|
checksum=2d2ce28e4e1137dd599d87884b62ef6dbf14fd7848b2a2bf7d61cf125fbd8e6f
|
2013-04-12 08:55:23 +02:00
|
|
|
|
2014-08-29 10:49:02 +02:00
|
|
|
build_options="pwquality"
|
|
|
|
desc_option_pwquality="Enable support for checking password quality via libpwquality"
|
|
|
|
|
|
|
|
if [ "$build_option_pwquality" ]; then
|
|
|
|
configure_args+=" --enable-pwquality"
|
|
|
|
makedepends+=" libpwquality-devel"
|
|
|
|
else
|
|
|
|
configure_args+=" --disable-pwquality"
|
|
|
|
fi
|
|
|
|
|
2013-04-12 08:55:23 +02:00
|
|
|
libcryptsetup_package() {
|
2013-05-03 20:11:46 +02:00
|
|
|
short_desc+=" - runtime libraries"
|
2013-04-12 08:55:23 +02:00
|
|
|
pkg_install() {
|
2013-08-14 06:52:15 +02:00
|
|
|
vmove "usr/lib/*.so.*"
|
2013-04-12 08:55:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cryptsetup-devel_package() {
|
2013-12-17 18:04:31 +01:00
|
|
|
depends="libcryptsetup>=${version}_${revision}"
|
2013-05-03 20:11:46 +02:00
|
|
|
short_desc+=" - development files"
|
2013-04-12 08:55:23 +02:00
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include
|
|
|
|
vmove usr/lib/pkgconfig
|
2013-08-14 06:52:15 +02:00
|
|
|
vmove "usr/lib/*.so"
|
2013-04-12 08:55:23 +02:00
|
|
|
}
|
|
|
|
}
|