Files
main/programming/library/libgfbgraph/actions.py
T
2022-11-03 12:43:12 +03:00

35 lines
954 B
Python

#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
shelltools.export("GFBGRAPH_LIBS","-ltracker-sparql-3.0")
shelltools.export("TRACKER_LIBS","-ltracker-sparql-3.0")
shelltools.export("TRACKER_LIBS","-ltracker-sparql-3.0")
shelltools.export("TRACKER_LIBS","-ltracker-sparql-3.0")
autotools.autoreconf("-fiv")
autotools.configure("--enable-introspection")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.removeDir("/usr/doc")
pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README")