wxPython rebuild python3.

This commit is contained in:
4fury-c3440d8
2022-07-30 10:57:31 +03:00
parent 2f29546edc
commit 7cae73bbf2
2 changed files with 81 additions and 0 deletions
@@ -0,0 +1,19 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import pythonmodules
from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
shelltools.export("JOBS", get.makeJOBS().replace("-j5", "5"))
options="WXPORT=gtk3 WX_CONFIG=/usr/bin/wx-config-gtk3"
def build():
pythonmodules.compile(pyVer = '3', parameters = options)
def install():
pythonmodules.install(pyVer = '3', parameters = options)