47 lines
1.4 KiB
Bash
47 lines
1.4 KiB
Bash
# Template file for 'volume_key'
|
|
pkgname=volume_key
|
|
version=0.3.12
|
|
revision=7
|
|
build_style=gnu-configure
|
|
configure_args="--without-python"
|
|
hostmakedepends="pkg-config python3-setuptools swig"
|
|
makedepends="cryptsetup-devel glib-devel gpgme-devel nss-devel python3-devel"
|
|
short_desc="Library for manipulating storage volume encryption keys"
|
|
maintainer="Andrew Benson <abenson@gmail.com>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://pagure.io/volume_key"
|
|
distfiles="https://releases.pagure.org/volume_key/volume_key-${version}.tar.xz"
|
|
checksum=6ca3748fc1dad22c450bbf6601d4e706cb11c5e662d11bb4aeb473a9cd77309b
|
|
make_check=no # Error initializing NSS: security library: bad database.
|
|
|
|
post_extract() {
|
|
# The rendered file uses the imp module, removed in Python 3.12;
|
|
# swig will regenerate it without this dependency during the build
|
|
rm python/python{,3}/volume_key.py
|
|
|
|
# The py-compile helper uses the imp module, removed in Python 3.12;
|
|
# besides, we don't want the module pre-compiled anyway, so just drop it
|
|
: > admin/py-compile
|
|
cat > admin/py-compile <<-'EOF'
|
|
#!/bin/sh
|
|
: "$@"
|
|
EOF
|
|
}
|
|
|
|
volume_key-python3_package() {
|
|
lib32disabled=yes
|
|
short_desc+=" - Python3 bindings"
|
|
pkg_install() {
|
|
vmove "usr/lib/python3*"
|
|
}
|
|
}
|
|
|
|
volume_key-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.so
|
|
}
|
|
}
|