Files
core/system/devel/re2c/actions.py
T
2020-12-16 23:34:18 +03:00

19 lines
379 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 pisitools
from pisi.actionsapi import autotools
def setup():
autotools.rawConfigure("--disable-silent-rules")
def build():
autotools.make()
def install():
autotools.install()