sip-native: add 4.12
authorKoen Kooi <koen@openembedded.org>
Fri, 24 Dec 2010 18:37:13 +0000 (19:37 +0100)
committerKoen Kooi <koen@openembedded.org>
Sat, 25 Dec 2010 20:25:56 +0000 (21:25 +0100)
Signed-off-by: Koen Kooi <koen@openembedded.org>
recipes/sip/sip-native_4.12.bb [new file with mode: 0644]

diff --git a/recipes/sip/sip-native_4.12.bb b/recipes/sip/sip-native_4.12.bb
new file mode 100644 (file)
index 0000000..47e8708
--- /dev/null
@@ -0,0 +1,36 @@
+DESCRIPTION = "SIP is a C++/Python Wrapper Generator"
+AUTHOR = "Phil Thompson"
+HOMEPAGE = "http://www.riverbankcomputing.co.uk/sip"
+SECTION = "devel"
+PRIORITY = "optional"
+LICENSE = "GPL"
+PR = "r0"
+
+SRC_URI = "http://www.riverbankcomputing.co.uk/static/Downloads/sip4/sip-${PV}.tar.gz"
+SRC_URI[md5sum] = "8a0998fbaf34bdab2c15af3d4fa3bc0e"
+SRC_URI[sha256sum] = "9a0d24aec5328fd038be13f94de5c710b767caeb1dfd869e52c69d98b8656168"
+
+S = "${WORKDIR}/sip-${PV}/sipgen"
+
+inherit qt4x11 native python-dir
+
+EXTRA_QMAKEVARS_POST += "DESTDIR=${S} CONFIG=console"
+
+export BUILD_SYS
+export HOST_SYS
+export STAGING_LIBDIR
+export STAGING_INCDIR
+
+do_configure_prepend() {
+        cat sipgen.sbf | sed s,target,TARGET, | sed s,sources,SOURCES, | sed s,headers,HEADERS, > sipgen.pro
+}
+do_install() {
+        install -d ${D}${bindir}
+        install -m 0755 sip ${D}${bindir}/sip
+        cd ${WORKDIR}/sip-${PV} && python configure.py
+        install -d ${D}${PYTHON_SITEPACKAGES_DIR}
+        install -m 0755 sip*.py ${D}${PYTHON_SITEPACKAGES_DIR}
+}
+
+DEFAULT_PREFERENCE = "-1"
+NATIVE_INSTALL_WORKS = "1"