mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:54:37 +08:00
25 lines
671 B
Bash
25 lines
671 B
Bash
pkgname=thin-provisioning-tools
|
|
pkgver=0.4.1
|
|
pkgrel=1
|
|
pkgdesc="A suite of tools for manipulating the metadata of the dm-thin device-mapper target"
|
|
arch=('i686' 'x86_64')
|
|
url="https://github.com/jthornber/thin-provisioning-tools"
|
|
license=('GPL3')
|
|
depends=('expat' 'gcc-libs' 'libaio')
|
|
makedepends=('boost')
|
|
source=(https://github.com/jthornber/${pkgname}/archive/v${pkgver}.tar.gz)
|
|
sha1sums=('af7cbaf3c7cd8f15e618bd5136afb89077afceb7')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
autoconf
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" BINDIR="${pkgdir}"/usr/bin MANDIR=/usr/share/man install
|
|
}
|
|
|