Files
core/system/devel/gmp/actions.py
T
2020-03-12 01:24:50 +03:00

33 lines
729 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.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")