diff options
author | Alejandro del Castillo <alejandro.delcastillo@ni.com> | 2015-12-11 18:14:31 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-16 12:12:15 +0000 |
commit | 692853d575e5bb4b46e71ab69e6b485782c4855b (patch) | |
tree | 638a36505d6f5bf4236136e39cc539ae340acb2e /meta/recipes-extended/libsolv | |
parent | 8bba7ded7b40ea2eb28f0aa8968501bec75a0110 (diff) | |
download | poky-692853d575e5bb4b46e71ab69e6b485782c4855b.tar.gz |
libsolv: add new recipe
Required by the optional opkg 0.3.1 libsolv backend.
(From OE-Core rev: bd7efb42c04649de54d36401d2745d6a0aab96c3)
Signed-off-by: Alejandro del Castillo <alejandro.delcastillo@ni.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/libsolv')
-rw-r--r-- | meta/recipes-extended/libsolv/libsolv_git.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-extended/libsolv/libsolv_git.bb b/meta/recipes-extended/libsolv/libsolv_git.bb new file mode 100644 index 0000000000..2011487f50 --- /dev/null +++ b/meta/recipes-extended/libsolv/libsolv_git.bb | |||
@@ -0,0 +1,28 @@ | |||
1 | SUMMARY = "Library for solving packages and reading repositories" | ||
2 | HOMEPAGE = "https://github.com/openSUSE/libsolv" | ||
3 | BUGTRACKER = "https://github.com/openSUSE/libsolv/issues" | ||
4 | SECTION = "devel" | ||
5 | LICENSE = "BSD-3-Clause" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE.BSD;md5=62272bd11c97396d4aaf1c41bc11f7d8" | ||
7 | |||
8 | DEPENDS = "expat zlib" | ||
9 | |||
10 | PV = "0.6.14+git${SRCPV}" | ||
11 | |||
12 | SRC_URI = "git://github.com/openSUSE/libsolv.git" | ||
13 | SRCREV = "b1ea39233f86cd62fbab1964d7497244f6be0087" | ||
14 | |||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | inherit cmake | ||
18 | |||
19 | EXTRA_OECMAKE = "-DLIB=${baselib}" | ||
20 | |||
21 | PACKAGES =+ "${PN}-tools ${PN}ext ${PN}ext-dbg" | ||
22 | |||
23 | FILES_${PN}-dev += "${datadir}/cmake/Modules/FindLibSolv.cmake" | ||
24 | FILES_${PN}-tools = "${bindir}/*" | ||
25 | FILES_${PN}ext = "${libdir}/${PN}ext.so.*" | ||
26 | FILES_${PN}ext-dbg = "${libdir}/.debug/${PN}ext.so.*" | ||
27 | |||
28 | BBCLASSEXTEND =+ "native nativesdk" | ||