Files
main/desktop/gnome/apps/nautilus-python/actions.py
T
2022-11-02 19:49:09 +03:00

23 lines
609 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import mesontools, pisitools, shelltools, get
def setup():
shelltools.export("PYTHON","/usr/bin/python3")
mesontools.configure()
def build():
mesontools.build()
def install():
mesontools.install()
shelltools.copytree("%s/usr/share/pkgconfig" % get.installDIR(), "%s/usr/lib/pkgconfig" % get.installDIR())
pisitools.removeDir("/usr/share/pkgconfig")
pisitools.dodoc("AUTHORS", "COPYING", "README*")