Files
2025-10-21 20:34:46 +03:00

36 lines
764 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 shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
options = "--enable-cxx"
if get.buildTYPE() == "emul32":
shelltools.export("ABI", "32")
autotools.autoreconf("-vfi")
autotools.configure(options)
def build():
autotools.make()
def check():
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
if get.buildTYPE() == "emul32": return
pisitools.doinfo("doc/*info*")
pisitools.dodoc("COPYING*", "README")