blob: 5af7ad76969c0ae50e7faeddfaeade181e2c1e46 (
plain)
1 # Description: A suite of tools for manipulating the metadata of the dm-thin device-mapper target.
2 # URL: https://github.com/jthornber/thin-provisioning-tools
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: boost expat libaio
5
6 name=thin-provisioning-tools
7 version=0.9.0
8 release=1
9 source=(https://github.com/jthornber/$name/archive/v$version/$name-v$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 autoconf
15
16 ./configure --prefix=/usr
17
18 make
19 make DESTDIR=$PKG install
20 }
|