mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-08 03:49:57 +00:00
sip: import from oe-classic and upgrade to latest
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
@@ -0,0 +1,33 @@
|
|||||||
|
DESCRIPTION = "SIP is a C++/Python Wrapper Generator"
|
||||||
|
AUTHOR = "Phil Thompson"
|
||||||
|
HOMEPAGE = "http://www.riverbankcomputing.co.uk/sip"
|
||||||
|
SECTION = "devel"
|
||||||
|
LICENSE = "GPLv2+"
|
||||||
|
LIC_FILES_CHKSUM = "file://sipgen.sbf;endline=15;md5=88e887a386c18a01240d8d055da4e441"
|
||||||
|
|
||||||
|
SRC_URI = "http://www.riverbankcomputing.co.uk/static/Downloads/sip4/sip-${PV}.tar.gz"
|
||||||
|
SRC_URI[md5sum] = "76192829cc42ec558db46e4f9e1d8ba9"
|
||||||
|
SRC_URI[sha256sum] = "ec295f71ef339c5b98db5650865f2c6c1200c4085b7a3f33f284111e1f534ac1"
|
||||||
|
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
|
||||||
|
# python-pyqt expects sip4
|
||||||
|
ln -sf sip ${D}${bindir}/sip4
|
||||||
|
cd ${WORKDIR}/sip-${PV} && python configure.py
|
||||||
|
install -d ${D}${PYTHON_SITEPACKAGES_DIR}
|
||||||
|
install -m 0755 sip*.py ${D}${PYTHON_SITEPACKAGES_DIR}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user