Files
main/desktop/mate/python-caja/actions.py
T
2020-02-29 23:00:52 +03:00

28 lines
791 B
Python

#!/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
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
shelltools.export("PYTHON","python3.8")
autotools.configure("--prefix=/usr \
--disable-scrollkeeper \
--disable-schemas-install")
# for fix unused dependency
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("README", "NEWS", "ChangeLog", "AUTHORS", "COPYING")