Files
main/programming/language/python/wxPython/actions.py
T
2016-07-02 12:02:30 +03:00

24 lines
619 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=gtk2 UNICODE=1 WX_CONFIG=/usr/bin/wx-config-2.8"
def build():
shelltools.cd("wxPython")
pythonmodules.compile(options)
def install():
shelltools.cd("wxPython")
pythonmodules.install(options)
pisitools.dohtml("docs/*")
pisitools.dodoc("docs/*.txt")