Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1 | DESCRIPTION = "The volume_key project provides a libvolume_key, a library for manipulating \ |
| 2 | storage volume encryption keys and storing them separately from volumes, and an \ |
| 3 | associated command-line tool, named volume_key." |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 4 | LICENSE = "GPL-2.0-only" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 5 | SECTION = "devel/lib" |
| 6 | |
| 7 | HOMEPAGE = "https://pagure.io/volume_key" |
| 8 | |
| 9 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" |
| 10 | |
| 11 | SRC_URI = "https://releases.pagure.org/volume_key/volume_key-${PV}.tar.xz \ |
| 12 | " |
| 13 | SRC_URI[md5sum] = "200591290173c3ea71528411838f9080" |
| 14 | SRC_URI[sha256sum] = "6ca3748fc1dad22c450bbf6601d4e706cb11c5e662d11bb4aeb473a9cd77309b" |
| 15 | |
| 16 | SRCNAME = "volume_key" |
| 17 | S = "${WORKDIR}/${SRCNAME}-${PV}" |
| 18 | |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 19 | inherit autotools python3native python3targetconfig gettext pkgconfig |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 20 | |
| 21 | DEPENDS += " \ |
| 22 | util-linux \ |
| 23 | glib-2.0 \ |
| 24 | cryptsetup \ |
| 25 | nss \ |
| 26 | gpgme \ |
| 27 | swig-native \ |
| 28 | " |
| 29 | |
| 30 | PACKAGECONFIG ??= "python3" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 31 | PACKAGECONFIG[python3] = "--with-python3,--without-python3,python3,python3" |
| 32 | |
Brad Bishop | e42b3e3 | 2020-01-15 22:08:42 -0500 | [diff] [blame] | 33 | EXTRA_OECONF = "--without-python" |
| 34 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 35 | RDEPENDS:python3-${BPN} += "${PN}" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 36 | |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 37 | PACKAGES += "python3-${BPN}" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 38 | FILES:python3-${BPN} = "${PYTHON_SITEPACKAGES_DIR}/*" |