Files
2019-12-25 19:38:19 +03:00

35 lines
876 B
Python

#!/usr/bin/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():
autotools.autoreconf("-fi")
pisitools.flags.add("-std=gnu++98")
#shelltools.system ("rm -rf libtool libtool.m4")
autotools.configure("--disable-static \
--enable-cplusplus")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def check():
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("ChangeLog", "doc/README.linux")
#pisitools.removeDir("/usr/share/gc")