summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/libsolv
diff options
context:
space:
mode:
authorAlejandro del Castillo <alejandro.delcastillo@ni.com>2015-12-11 18:14:31 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-16 12:12:15 +0000
commit692853d575e5bb4b46e71ab69e6b485782c4855b (patch)
tree638a36505d6f5bf4236136e39cc539ae340acb2e /meta/recipes-extended/libsolv
parent8bba7ded7b40ea2eb28f0aa8968501bec75a0110 (diff)
downloadpoky-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.bb28
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 @@
1SUMMARY = "Library for solving packages and reading repositories"
2HOMEPAGE = "https://github.com/openSUSE/libsolv"
3BUGTRACKER = "https://github.com/openSUSE/libsolv/issues"
4SECTION = "devel"
5LICENSE = "BSD-3-Clause"
6LIC_FILES_CHKSUM = "file://LICENSE.BSD;md5=62272bd11c97396d4aaf1c41bc11f7d8"
7
8DEPENDS = "expat zlib"
9
10PV = "0.6.14+git${SRCPV}"
11
12SRC_URI = "git://github.com/openSUSE/libsolv.git"
13SRCREV = "b1ea39233f86cd62fbab1964d7497244f6be0087"
14
15S = "${WORKDIR}/git"
16
17inherit cmake
18
19EXTRA_OECMAKE = "-DLIB=${baselib}"
20
21PACKAGES =+ "${PN}-tools ${PN}ext ${PN}ext-dbg"
22
23FILES_${PN}-dev += "${datadir}/cmake/Modules/FindLibSolv.cmake"
24FILES_${PN}-tools = "${bindir}/*"
25FILES_${PN}ext = "${libdir}/${PN}ext.so.*"
26FILES_${PN}ext-dbg = "${libdir}/.debug/${PN}ext.so.*"
27
28BBCLASSEXTEND =+ "native nativesdk"