diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2014-11-15 17:03:38 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2014-11-15 17:03:38 +1100 |
commit | 05ce09561644339dcd5ff684e57a83e3cff57a2b (patch) | |
tree | d6ff45d35533060d64820586b412d4ea2d2a8aaa /thin-provisioning-tools | |
parent | 6297e8586f158d700ffab2aaac1a1238af65a699 (diff) | |
download | contrib-05ce09561644339dcd5ff684e57a83e3cff57a2b.tar.gz contrib-05ce09561644339dcd5ff684e57a83e3cff57a2b.tar.xz |
thin-provisioning-tools: initial import
Diffstat (limited to 'thin-provisioning-tools')
-rw-r--r-- | thin-provisioning-tools/.footprint | 10 | ||||
-rw-r--r-- | thin-provisioning-tools/.md5sum | 1 | ||||
-rw-r--r-- | thin-provisioning-tools/Pkgfile | 23 |
3 files changed, 34 insertions, 0 deletions
diff --git a/thin-provisioning-tools/.footprint b/thin-provisioning-tools/.footprint new file mode 100644 index 000000000..c5f3c7f8e --- /dev/null +++ b/thin-provisioning-tools/.footprint @@ -0,0 +1,10 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man8/ +-rw-r--r-- root/root usr/man/man8/thin_check.8.gz +-rw-r--r-- root/root usr/man/man8/thin_dump.8.gz +-rw-r--r-- root/root usr/man/man8/thin_restore.8.gz +drwxr-xr-x root/root usr/sbin/ +-rwxr-xr-x root/root usr/sbin/thin_check +-rwxr-xr-x root/root usr/sbin/thin_dump +-rwxr-xr-x root/root usr/sbin/thin_restore diff --git a/thin-provisioning-tools/.md5sum b/thin-provisioning-tools/.md5sum new file mode 100644 index 000000000..cd0aa431b --- /dev/null +++ b/thin-provisioning-tools/.md5sum @@ -0,0 +1 @@ +367e94cd638506f6ce231fcd60b75edf v0.1.4.tar.gz diff --git a/thin-provisioning-tools/Pkgfile b/thin-provisioning-tools/Pkgfile new file mode 100644 index 000000000..52dba9fc4 --- /dev/null +++ b/thin-provisioning-tools/Pkgfile @@ -0,0 +1,23 @@ +# Description: A suite of tools for manipulating the metadata of the dm-thin device-mapper target. +# URL: https://github.com/jthornber/thin-provisioning-tools +# Maintainer: Danny Rawlins, crux at romster dot me +# Packager: Danny Rawlins, crux at romster dot me +# Depends on: boost + +name=thin-provisioning-tools +version=0.1.4 +release=1 +source=(https://github.com/jthornber/$name/archive/v$version.tar.gz) + +build() { + cd $name-$version + + autoconf + + ./configure \ + --prefix=/usr \ + --mandir=/usr/man + + make + make DESTDIR=$PKG MANDIR="/usr/man" install +} |