diff options
Diffstat (limited to 'sip/sip4-native_4.0.1.oe')
-rw-r--r-- | sip/sip4-native_4.0.1.oe | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sip/sip4-native_4.0.1.oe b/sip/sip4-native_4.0.1.oe index e69de29bb2..7963c2fa23 100644 --- a/sip/sip4-native_4.0.1.oe +++ b/sip/sip4-native_4.0.1.oe @@ -0,0 +1,17 @@ +DESCRIPTION = "SIP - A Python Wrapper Generator" +SECTION = "base" +PRIORITY = "optional" +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" +LICENSE = "GPL" + +SRC_URI = "http://www.vanille.de/mirror/sip-${PV}.tar.gz" +S = "${WORKDIR}/sip-${PV}/sipgen" + +inherit qmake native + +EXTRA_QMAKEVARS_POST = "DESTDIR=${STAGING_BINDIR} CONFIG=console" + +do_configure_prepend() { + cat sipgen.sbf | sed s,target,TARGET, | sed s,sources,SOURCES, | sed s,headers,HEADERS, > sipgen.pro +} + |