25 lines
629 B
Plaintext
25 lines
629 B
Plaintext
# 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 expat libaio
|
|
|
|
name=thin-provisioning-tools
|
|
version=0.7.4
|
|
release=1
|
|
source=(https://github.com/jthornber/$name/archive/v$version.tar.gz
|
|
0001-fix-build-with-testing-disabled.patch)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
patch -p1 -i $SRC/0001-fix-build-with-testing-disabled.patch
|
|
|
|
autoconf
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|