diff options
Diffstat (limited to 'meta-oe/recipes-extended/libblockdev/libblockdev_2.24.bb')
-rw-r--r-- | meta-oe/recipes-extended/libblockdev/libblockdev_2.24.bb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/libblockdev/libblockdev_2.24.bb b/meta-oe/recipes-extended/libblockdev/libblockdev_2.24.bb new file mode 100644 index 000000000..99cdee5bb --- /dev/null +++ b/meta-oe/recipes-extended/libblockdev/libblockdev_2.24.bb | |||
@@ -0,0 +1,40 @@ | |||
1 | DESCRIPTION = "libblockdev is a C library supporting GObject introspection for manipulation of \ | ||
2 | block devices. It has a plugin-based architecture where each technology (like \ | ||
3 | LVM, Btrfs, MD RAID, Swap,...) is implemented in a separate plugin, possibly \ | ||
4 | with multiple implementations (e.g. using LVM CLI or the new LVM DBus API)." | ||
5 | HOMEPAGE = "http://rhinstaller.github.io/libblockdev/" | ||
6 | LICENSE = "LGPLv2+" | ||
7 | SECTION = "devel/lib" | ||
8 | |||
9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c07cb499d259452f324bb90c3067d85c" | ||
10 | |||
11 | inherit autotools gobject-introspection | ||
12 | |||
13 | SRC_URI = "git://github.com/storaged-project/libblockdev;branch=2.x-branch" | ||
14 | SRCREV = "f5a4ba8bb298f8cbc435707d0b19b4b2ff836a8e" | ||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | FILES_${PN} += "${libdir}/python2.7/dist-packages ${libdir}/python3.*/site-packages" | ||
18 | |||
19 | PACKAGECONFIG ??= "python3 lvm dm kmod parted fs escrow btrfs crypto mdraid kbd mpath nvdimm" | ||
20 | PACKAGECONFIG[python3] = "--with-python3, --without-python3,,python3" | ||
21 | PACKAGECONFIG[python2] = "--with-python2, --without-python2,,python" | ||
22 | PACKAGECONFIG[lvm] = "--with-lvm, --without-lvm, multipath-tools, lvm2" | ||
23 | PACKAGECONFIG[lvm-dbus] = "--with-lvm_dbus, --without-lvm_dbus, multipath-tools, lvm2" | ||
24 | PACKAGECONFIG[dm] = "--with-dm, --without-dm, multipath-tools, lvm2" | ||
25 | PACKAGECONFIG[dmraid] = "--with-dmraid, --without-dmraid" | ||
26 | PACKAGECONFIG[kmod] = "--with-kbd, --without-kbd, kmod" | ||
27 | PACKAGECONFIG[parted] = "--with-part, --without-part, parted" | ||
28 | PACKAGECONFIG[fs] = "--with-fs, --without-fs, util-linux" | ||
29 | PACKAGECONFIG[doc] = "--with-gtk-doc, --without-gtk-doc, gtk-doc-native" | ||
30 | PACKAGECONFIG[nvdimm] = "--with-nvdimm, --without-nvdimm, ndctl util-linux" | ||
31 | PACKAGECONFIG[vdo] = "--with-vdo, --without-vdo" | ||
32 | PACKAGECONFIG[escrow] = "--with-escrow, --without-escrow, nss volume-key" | ||
33 | PACKAGECONFIG[btrfs] = "--with-btrfs,--without-btrfs,libbytesize btrfs-tools" | ||
34 | PACKAGECONFIG[crypto] = "--with-crypto,--without-crypto,cryptsetup nss volume-key" | ||
35 | PACKAGECONFIG[mdraid] = "--with-mdraid,--without-mdraid,libbytesize" | ||
36 | PACKAGECONFIG[kbd] = "--with-kbd,--without-kbd,libbytesize" | ||
37 | PACKAGECONFIG[mpath] = "--with-mpath,--without-mpath, multipath-tools, lvm2" | ||
38 | |||
39 | export GIR_EXTRA_LIBS_PATH="${B}/src/utils/.libs" | ||
40 | |||