diff options
| author | Kai Kang <kai.kang@windriver.com> | 2022-03-30 17:39:33 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-03-30 07:51:38 -0700 |
| commit | 6eb78d932f29efb52961c045d4b8b2ea4a2bd7f6 (patch) | |
| tree | 60bfc0b2b6733e917136cba7666cbba38a7fadef /meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.1.1.bb | |
| parent | ce604d453c9d119e992bdcd7e0e0a01960b8d2de (diff) | |
| download | meta-openembedded-6eb78d932f29efb52961c045d4b8b2ea4a2bd7f6.tar.gz | |
python3-wxgtk4: add recipe
Add recipe for python3-wxgtk4 which is a python3 interface to the
wxWidgets Cross-platform C++ GUI toolkit.
Add patches to
* add back build options for oe
* fixup build scripts for cross compile
* fix sip oevrride functions compile errors
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.1.1.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.1.1.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.1.1.bb b/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.1.1.bb new file mode 100644 index 0000000000..af7b51d83b --- /dev/null +++ b/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.1.1.bb | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | DESCRIPTION = "Python3 interface to the wxWidgets Cross-platform C++ GUI toolkit." | ||
| 2 | HOMEPAGE = "http://www.wxpython.org" | ||
| 3 | |||
| 4 | LICENSE = "WXwindows" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fce1d18e2d633d41786c0a8dfbc80917" | ||
| 6 | |||
| 7 | DEPENDS = "wxwidgets-native wxwidgets" | ||
| 8 | |||
| 9 | PYPI_PACKAGE = "wxPython" | ||
| 10 | |||
| 11 | SRC_URI += "file://add-back-option-build-base.patch \ | ||
| 12 | file://wxgtk-fixup-build-scripts.patch \ | ||
| 13 | file://sip-fix-override-functions.patch \ | ||
| 14 | " | ||
| 15 | SRC_URI[sha256sum] = "00e5e3180ac7f2852f342ad341d57c44e7e4326de0b550b9a5c4a8361b6c3528" | ||
| 16 | |||
| 17 | S = "${WORKDIR}/wxPython-${PV}" | ||
| 18 | |||
| 19 | inherit pypi setuptools3 pkgconfig | ||
| 20 | |||
| 21 | export WX_CONFIG = "${RECIPE_SYSROOT_NATIVE}${bindir}/wx-config" | ||
| 22 | |||
| 23 | RDEPENDS:${PN} = "\ | ||
| 24 | python3-difflib \ | ||
| 25 | python3-image \ | ||
| 26 | python3-numpy \ | ||
| 27 | python3-pillow \ | ||
| 28 | python3-pprint \ | ||
| 29 | python3-pycairo \ | ||
| 30 | python3-six \ | ||
| 31 | python3-xml \ | ||
| 32 | " | ||
