Files
main/game/action/bzflag/actions.py
T
2018-05-02 23:27:41 +02:00

30 lines
782 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():
shelltools.export("CFLAGS","%s -fPIC -fno-strict-aliasing" % get.CFLAGS())
autotools.autoreconf("-fi")
autotools.configure("--without-regex \
--enable-shared \
--disable-static")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("AUTHORS", "README","ChangeLog", "DEVINFO")