Files
4fury-c3440d8 74020fffae azpainter-3.0.5
2022-04-16 02:15:15 +03:00

23 lines
548 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.rawConfigure("--prefix=/usr")
def build():
shelltools.system("ninja -C build")
def install():
shelltools.system("DESTDIR=%s ninja -C build install" % get.installDIR())
pisitools.dodoc("ChangeLog", "ReadMe*")