diff options
author | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2007-12-13 12:45:55 +0000 |
---|---|---|
committer | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2007-12-13 12:45:55 +0000 |
commit | 7a7ac89e3479c80a107f9363336567b29cd963bd (patch) | |
tree | e93d18eb44df4f0e10c0a84bd8282de734d7b308 /packages/sip/sip-native_4.7.3.bb | |
parent | 7085289d77b701e5617fc8ab17cb4641dc32ead0 (diff) |
sip: upgrade sip-native and python-sip to 4.7.3
* 4.7.1 had become unfetchable
* verified successful compilation in Sonkei
Diffstat (limited to 'packages/sip/sip-native_4.7.3.bb')
-rw-r--r-- | packages/sip/sip-native_4.7.3.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/sip/sip-native_4.7.3.bb b/packages/sip/sip-native_4.7.3.bb new file mode 100644 index 0000000000..b47a3a7539 --- /dev/null +++ b/packages/sip/sip-native_4.7.3.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "SIP is a C++/Python Wrapper Generator" +SECTION = "devel" +HOMEPAGE = "http://www.riverbankcomputing.co.uk/sip" +AUTHOR = "Phil Thompson" +PRIORITY = "optional" +LICENSE = "GPL" + +SRC_URI = "http://www.riverbankcomputing.com/Downloads/sip4/sip-${PV}.tar.gz" +S = "${WORKDIR}/sip-${PV}/sipgen" + +inherit qt4x11 native + +EXTRA_QMAKEVARS_POST += "DESTDIR=${S} CONFIG=console" + +do_configure_prepend() { + cat sipgen.sbf | sed s,target,TARGET, | sed s,sources,SOURCES, | sed s,headers,HEADERS, > sipgen.pro +} + +do_stage() { + install -m 0755 sip ${STAGING_BINDIR_NATIVE}/sip + cd ${WORKDIR}/sip-${PV} && python configure.py + install -d ${STAGING_PYDIR}/site-packages + install -m 0755 sip*.py ${STAGING_PYDIR}/site-packages +} + |