diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-04-24 00:27:47 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-04-24 00:27:47 +0000 |
commit | df84f20abbadd9aae8dc2aa7b96dac88617bc8f3 (patch) | |
tree | 53ca449a687006abcaff532963b87c09636f5be3 /packages/sip/sip4-native_4.4.2.bb | |
parent | 3862c2d18d492be19b03a93044f4008ef9100e5a (diff) |
sip4-native: upgrade to 4.4.2
Diffstat (limited to 'packages/sip/sip4-native_4.4.2.bb')
-rw-r--r-- | packages/sip/sip4-native_4.4.2.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/sip/sip4-native_4.4.2.bb b/packages/sip/sip4-native_4.4.2.bb new file mode 100644 index 0000000000..395fa15ac7 --- /dev/null +++ b/packages/sip/sip4-native_4.4.2.bb @@ -0,0 +1,23 @@ +DESCRIPTION = "SIP is a C++/Python Wrapper Generator" +SECTION = "base" +HOMEPAGE = "http://www.riverbankcomputing.co.uk/sip" +AUTHOR = "Phil Thompson" +PRIORITY = "optional" +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" +LICENSE = "GPL" + +SRC_URI = "http://www.riverbankcomputing.com/Downloads/sip4/sip-${PV}.tar.gz" +S = "${WORKDIR}/sip-${PV}/sipgen" + +inherit qmake 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}/sip4 +} + |