From b25b25fd0ea154595603f74389f252b42894e1ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ertu=C4=9Frul=20Erata?= Date: Sun, 13 Mar 2016 21:18:14 +0200 Subject: [PATCH] thin-provisioning-tools in core --- .../disk/thin-provisioning-tools/actions.py | 18 ++++++++ .../disk/thin-provisioning-tools/pspec.xml | 41 +++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 hardware/disk/thin-provisioning-tools/actions.py create mode 100644 hardware/disk/thin-provisioning-tools/pspec.xml diff --git a/hardware/disk/thin-provisioning-tools/actions.py b/hardware/disk/thin-provisioning-tools/actions.py new file mode 100644 index 00000000..7f964085 --- /dev/null +++ b/hardware/disk/thin-provisioning-tools/actions.py @@ -0,0 +1,18 @@ +#!/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()) \ No newline at end of file diff --git a/hardware/disk/thin-provisioning-tools/pspec.xml b/hardware/disk/thin-provisioning-tools/pspec.xml new file mode 100644 index 00000000..09fc65a6 --- /dev/null +++ b/hardware/disk/thin-provisioning-tools/pspec.xml @@ -0,0 +1,41 @@ + + + thin-provisioning-tools + http://github.com/jthornber/thin-provisioning-tools" + + Ali Algul + alialgul@pisilinux.org + + GPLv2 + A suite of tools for thin provisioning on Linux + A suite of tools for thin provisioning on Linux + + libaio-devel + boost-devel + expat-devel + libgcc + + https://codeload.github.com/jthornber/thin-provisioning-tools/tar.gz/v0.6.0 + + + thin-provisioning-tools + + expat + libgcc + libaio + + + /usr/sbin/ + /usr/share/man/man8/ + + + + + 2016-01-31 + 0.6.0 + First Build + Ali Algul + alialgul@pisilinux.org + + + \ No newline at end of file