blob: bfecc7ebd8492c8eefa92070dca1a96621949e3a [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001DESCRIPTION = "The volume_key project provides a libvolume_key, a library for manipulating \
2storage volume encryption keys and storing them separately from volumes, and an \
3associated command-line tool, named volume_key."
4LICENSE = "GPLv2"
5SECTION = "devel/lib"
6
7HOMEPAGE = "https://pagure.io/volume_key"
8
9LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
10
11SRC_URI = "https://releases.pagure.org/volume_key/volume_key-${PV}.tar.xz \
12"
13SRC_URI[md5sum] = "200591290173c3ea71528411838f9080"
14SRC_URI[sha256sum] = "6ca3748fc1dad22c450bbf6601d4e706cb11c5e662d11bb4aeb473a9cd77309b"
15
16SRCNAME = "volume_key"
17S = "${WORKDIR}/${SRCNAME}-${PV}"
18
19inherit autotools python3native gettext
20
21DEPENDS += " \
22 util-linux \
23 glib-2.0 \
24 cryptsetup \
25 nss \
26 gpgme \
27 swig-native \
28"
29
30PACKAGECONFIG ??= "python3"
Brad Bishop19323692019-04-05 15:28:33 -040031PACKAGECONFIG[python3] = "--with-python3,--without-python3,python3,python3"
32
Brad Bishope42b3e32020-01-15 22:08:42 -050033EXTRA_OECONF = "--without-python"
34
Patrick Williams213cb262021-08-07 19:21:33 -050035RDEPENDS:python3-${BPN} += "${PN}"
Brad Bishop19323692019-04-05 15:28:33 -040036
Brad Bishop26bdd442019-08-16 17:08:17 -040037PACKAGES += "python3-${BPN}"
Patrick Williams213cb262021-08-07 19:21:33 -050038FILES:python3-${BPN} = "${PYTHON_SITEPACKAGES_DIR}/*"