Files
main/hardware/disk/reiserfsprogs/actions.py
T
Ertuğrul Erata 13e918937c fix build
2016-03-30 14:37:15 +03:00

22 lines
526 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():
pisitools.flags.add("-std=gnu89")
autotools.configure("--prefix=/usr --sbindir=/sbin")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("ChangeLog", "README")