azpainter-3.0.5

This commit is contained in:
4fury-c3440d8
2022-04-16 02:15:15 +03:00
parent cc57220be8
commit 74020fffae
2 changed files with 13 additions and 4 deletions
+3 -2
View File
@@ -4,6 +4,7 @@
# 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
@@ -12,10 +13,10 @@ def setup():
autotools.rawConfigure("--prefix=/usr")
def build():
autotools.make()
shelltools.system("ninja -C build")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
shelltools.system("DESTDIR=%s ninja -C build install" % get.installDIR())
pisitools.dodoc("ChangeLog", "ReadMe*")