Files
main/programming/build/samurai/actions.py
T
4fury-c3440d8 90461ce3f9 samurai v1.3
2026-04-06 18:00:55 +04:00

18 lines
422 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def build():
autotools.make()
def install():
autotools.rawInstall("PREFIX=/usr DESTDIR=%s" % get.installDIR())
pisitools.dodoc("LICENSE")