wxPython python2.

This commit is contained in:
4fury-c3440d8
2022-07-30 10:56:05 +03:00
parent 0fa0177b11
commit 2f29546edc
2 changed files with 32 additions and 43 deletions
@@ -1,23 +1,22 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pythonmodules
from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
options="WXPORT=gtk3 UNICODE=1 WX_CONFIG=/usr/bin/wx-config-gtk3"
shelltools.export("JOBS", get.makeJOBS().replace("-j5", "5"))
options="WXPORT=gtk3 WX_CONFIG=/usr/bin/wx-config-gtk3"
def build():
shelltools.cd("wxPython")
pythonmodules.compile(options)
def install():
shelltools.cd("wxPython")
pythonmodules.install(options)
pisitools.dohtml("docs/*")
pisitools.dodoc("docs/*.txt")
# install only python libraries
pisitools.removeDir("/usr/bin")
pisitools.removeDir("/usr/share")