core/mdds/PKGBUILD

28 lines
676 B
Bash
Raw Normal View History

pkgname=mdds
2018-02-22 00:06:49 +08:00
pkgver=1.3.1
pkgrel=1
pkgdesc="A collection of multi-dimensional data structures and indexing algorithms"
2017-02-16 22:37:06 +08:00
arch=('x86_64')
url="https://gitlab.com/mdds/mdds"
license=('MIT')
checkdepends=('boost')
# see http://code.google.com/p/multidimalgorithm/wiki/Downloads
source=(http://kohei.us/files/mdds/src/${pkgname}-${pkgver}.tar.bz2)
2018-02-22 00:06:49 +08:00
sha256sums=('dcb8cd2425567a5a5ec164afea475bce57784bca3e352ad4cbdd3d1a7e08e5a1')
build() {
2018-02-22 00:06:49 +08:00
cd $pkgname-$pkgver
./configure --prefix=/usr
}
check() {
2018-02-22 00:06:49 +08:00
cd $pkgname-$pkgver
make check
}
package() {
2018-02-22 00:06:49 +08:00
cd $pkgname-$pkgver
make DESTDIR=$pkgdir install
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
}