diff options
Diffstat (limited to 'meta/recipes-extended/libsolv/libsolv_0.7.5.bb')
-rw-r--r-- | meta/recipes-extended/libsolv/libsolv_0.7.5.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-extended/libsolv/libsolv_0.7.5.bb b/meta/recipes-extended/libsolv/libsolv_0.7.5.bb new file mode 100644 index 0000000000..80ce76b45f --- /dev/null +++ b/meta/recipes-extended/libsolv/libsolv_0.7.5.bb | |||
@@ -0,0 +1,31 @@ | |||
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 | SRC_URI = "git://github.com/openSUSE/libsolv.git \ | ||
11 | " | ||
12 | |||
13 | SRCREV = "2cab7ea00d08390374b25b11d969f3740c4660f4" | ||
14 | |||
15 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)" | ||
16 | |||
17 | S = "${WORKDIR}/git" | ||
18 | |||
19 | inherit cmake | ||
20 | |||
21 | PACKAGECONFIG ??= "rpm" | ||
22 | PACKAGECONFIG[rpm] = "-DENABLE_RPMMD=ON -DENABLE_RPMDB=ON,,rpm" | ||
23 | |||
24 | EXTRA_OECMAKE = "-DMULTI_SEMANTICS=ON -DENABLE_COMPLEX_DEPS=ON" | ||
25 | |||
26 | PACKAGES =+ "${PN}-tools ${PN}ext" | ||
27 | |||
28 | FILES_${PN}-tools = "${bindir}/*" | ||
29 | FILES_${PN}ext = "${libdir}/${PN}ext.so.*" | ||
30 | |||
31 | BBCLASSEXTEND = "native nativesdk" | ||