new packages for krita: zug, lager

This commit is contained in:
suvari
2023-11-01 22:04:37 +03:00
parent 583a1ec9de
commit 3eff1c77b2
11 changed files with 254 additions and 6 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/usr/bin/env 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 cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
-Dlager_BUILD_EXAMPLES=OFF \
-Dlager_BUILD_TESTS=OFF")
def build():
cmaketools.make()
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("LICENSE", "README*")