Files
core/system/base/bc/actions.py
T
Ertuğrul Erata d62b919128 bc update
2017-12-03 01:54:11 +03:00

21 lines
500 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 get
def setup():
autotools.configure("--with-readline")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "FAQ", "NEWS", "README", "ChangeLog")