libgdata libuhttpmock libgfbgraph

This commit is contained in:
Rmys
2021-06-03 11:08:16 +03:00
parent 6b9a720c29
commit 5245a9a3b4
13 changed files with 266608 additions and 266247 deletions
@@ -0,0 +1,28 @@
#!/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.system("sh ./autogen.sh")
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")