summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-graphics/libyui/libyui_git.bb39
1 files changed, 39 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/libyui/libyui_git.bb b/meta-oe/recipes-graphics/libyui/libyui_git.bb
new file mode 100644
index 0000000000..9b1d1d8184
--- /dev/null
+++ b/meta-oe/recipes-graphics/libyui/libyui_git.bb
@@ -0,0 +1,39 @@
1SUMMARY = "Libyui is a widget abstraction library providing Qt, GTK and ncurses frontends."
2LICENSE = "LGPLv3"
3LIC_FILES_CHKSUM = "file://COPYING.gpl-3;md5=d32239bcb673463ab874e80d47fae504 \
4 file://COPYING.lgpl-2.1;md5=4fbd65380cdd255951079008b364516c \
5 file://COPYING.lgpl-3;md5=e6a600fd5e1d9cbde2d983680233ad02 \
6 "
7
8SRC_URI = "git://github.com/libyui/libyui.git \
9 "
10
11PV = "3.3.3+git"
12SRCREV = "f4ccea39f6b6f37eabd0a4df49db5f9bcb3c013a"
13
14S = "${WORKDIR}/git"
15
16inherit cmake gettext pkgconfig
17
18DEPENDS += "boost"
19
20BBCLASSEXTEND = "native nativesdk"
21
22do_configure_prepend () {
23 cd ${S}
24 ./bootstrap.sh
25 cd -
26}
27
28do_install_append () {
29 if [ "${libdir}" = "${base_prefix}/usr/lib" ] && [ -d ${D}/usr/lib64 ]; then
30 mv ${D}/usr/lib64 ${D}/usr/lib
31 fi
32}
33
34do_install_append_class-nativesdk () {
35 mkdir -p ${D}/${base_prefix}
36 mv ${D}/usr ${D}/${base_prefix}
37}
38
39FILES_${PN}-dev = "${libdir}/* ${includedir}/yui*"