diff options
Diffstat (limited to 'meta-oe/recipes-support/iniparser/iniparser_4.1.bb')
-rw-r--r-- | meta-oe/recipes-support/iniparser/iniparser_4.1.bb | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/iniparser/iniparser_4.1.bb b/meta-oe/recipes-support/iniparser/iniparser_4.1.bb index f3593fb5f..2810a4f65 100644 --- a/meta-oe/recipes-support/iniparser/iniparser_4.1.bb +++ b/meta-oe/recipes-support/iniparser/iniparser_4.1.bb | |||
@@ -6,12 +6,19 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=e02baf71c76e0650e667d7da133379ac" | |||
6 | 6 | ||
7 | DEPENDS = "doxygen-native" | 7 | DEPENDS = "doxygen-native" |
8 | 8 | ||
9 | PV .= "+git${SRCPV}" | ||
10 | |||
9 | SRC_URI = "git://github.com/ndevilla/iniparser.git;protocol=https;branch=master \ | 11 | SRC_URI = "git://github.com/ndevilla/iniparser.git;protocol=https;branch=master \ |
12 | file://0001-iniparser.pc-Make-libpath-a-variable.patch \ | ||
10 | file://Add-CMake-support.patch" | 13 | file://Add-CMake-support.patch" |
11 | 14 | ||
12 | # tag 4.1 | 15 | SRCREV= "deb85ad4936d4ca32cc2260ce43323d47936410d" |
13 | SRCREV= "0a38e85c9cde1e099ca3bf70083bd00f89c3e5b6" | ||
14 | 16 | ||
15 | S = "${WORKDIR}/git" | 17 | S = "${WORKDIR}/git" |
16 | 18 | ||
17 | inherit cmake | 19 | inherit cmake |
20 | |||
21 | do_install:append() { | ||
22 | install -Dm 0644 ${S}/iniparser.pc ${D}${libdir}/pkgconfig/iniparser.pc | ||
23 | sed -i -e 's,@baselib@,${baselib},g' ${D}${libdir}/pkgconfig/iniparser.pc | ||
24 | } | ||