ınkscape:verbumoto1.0.1y

This commit is contained in:
blue-devil
2020-09-16 02:18:26 +02:00
parent 3a09d10ef7
commit 01eaf04f60
3 changed files with 109 additions and 95 deletions
+24 -9
View File
@@ -2,23 +2,38 @@
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import get
from pisi.actionsapi import pisitools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import get
from pisi.actionsapi import shelltools
j = "-DBUILD_TESTING=OFF -L \
-DBUILD_SHARED_LIBS=ON \
-DWITH_IMAGE_MAGICK=OFF \
-DBUILD_STATIC_LIBS=OFF \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
"
shelltools.export("PYTHON", "/usr/bin/python3")
def setup():
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
-DWITH_DBUS=ON \
-DCMAKE_BUILD_TYPE=Release")
# fix shebang
shelltools.system("find share/extensions -iname '*.py' -exec sed -i 's|env\ python$|env python3|g' {} \;")
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.configure(j, sourceDir = '..')
def build():
shelltools.cd("build")
cmaketools.make()
def install():
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.remove("/usr/lib/inkscape/*.a")
pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog", "NEWS", "README")
shelltools.cd("..")
pisitools.dodoc("COPYING", "README.md")