Files
main/programming/language/python/wxPython/actions.py
T
2020-01-31 19:46:37 +03:00

24 lines
620 B
Python

# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.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 get
options="WXPORT=gtk3 UNICODE=1 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")