move extra and xorg ports to core repo

This commit is contained in:
emmett1
2020-04-13 14:53:21 +08:00
parent a4d6f72863
commit fc0f6364b0
3750 changed files with 660951 additions and 16 deletions

View File

@@ -0,0 +1 @@
922b02ff2c0202a7bf1607c98bbbbc04 wxPython-src-3.0.2.0.tar.bz2

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,31 @@
# description : Classic wxWidgets GUI toolkit for Python
# depends : wxgtk3 python2 mesa glu
name=python2-wxpython3
version=3.0.2.0
release=1
source="https://downloads.sourceforge.net/wxpython/wxPython-src-$version.tar.bz2"
build() {
cd wxPython-src-$version
./configure \
--prefix=/usr \
--libdir=/usr/lib \
--includedir=/usr/include \
--with-gtk=3 \
--with-opengl \
--enable-unicode \
--enable-graphics_ctx \
--disable-precomp-headers \
--with-regex=sys \
--with-libpng=sys \
--with-libxpm=sys \
--with-libjpeg=sys \
--with-libtiff=sys
cd wxPython
python2 setup.py WXPORT=gtk3 UNICODE=1 build
python2 setup.py WXPORT=gtk3 UNICODE=1 install --root=$PKG --optimize=1
# --with-wx-config=/usr/bin/wx-config-gtk3
# WX_CONFIG=/usr/bin/wx-config-gtk3
}