Files
main/hardware/disk/thin-provisioning-tools/actions.py
T
Ertuğrul Erata a9fd5b92b7 btrfs-progs v.bump
2015-07-20 19:44:09 +03:00

18 lines
415 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import get
def setup():
autotools.autoreconf()
autotools.configure("--prefix=/usr")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())