Files
main/multimedia/graphics/inkscape/actions.py
T
2019-06-26 11:48:18 +03:00

25 lines
698 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import pisitools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import get
def setup():
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
-DWITH_DBUS=ON \
-DCMAKE_BUILD_TYPE=Release")
def build():
cmaketools.make()
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.remove("/usr/lib/inkscape/*.a")
pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog", "NEWS", "README")