Files
main/programming/build/luajit/actions.py
T
2018-10-13 15:32:43 +03:00

19 lines
506 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 build():
pisitools.dosed("Makefile", "PREFIX= /usr/local", "PREFIX= /usr")
autotools.make("amalg PREFIX=/usr")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("COPYRIGHT", "README")