Files
main/office/dictionary/goldendict/actions.py
T
2019-02-07 15:55:53 +03:00

24 lines
541 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
from pisi.actionsapi import shelltools
WorkDir = "goldendict-1.5.0-RC2"
def setup():
shelltools.system("PREFIX=/usr qmake CONFIG+=no_epwing_support")
def build():
autotools.make()
def install():
autotools.rawInstall("INSTALL_ROOT=%s" % get.installDIR())