diff options
author | J0WI <J0WI@users.noreply.github.com> | 2019-03-05 19:15:38 +0100 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-04-01 18:35:50 +0000 |
commit | a96b58432bcc2d41ccdf87c81d09f4f2e5b0b92e (patch) | |
tree | 92df81c9791a92274d8e7b5f5a40a191821b0d33 | |
parent | a0a5ffcea690a74b6f8c240d811be43542af60a6 (diff) | |
download | aports-a96b58432bcc2d41ccdf87c81d09f4f2e5b0b92e.tar.bz2 aports-a96b58432bcc2d41ccdf87c81d09f4f2e5b0b92e.tar.xz |
community/mdds: update to 1.4.3
-rw-r--r-- | community/mdds/APKBUILD | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/community/mdds/APKBUILD b/community/mdds/APKBUILD index 288a7a7fe0..1f1a7ee287 100644 --- a/community/mdds/APKBUILD +++ b/community/mdds/APKBUILD @@ -1,8 +1,8 @@ # Contributor: Timo Teräs <timo.teras@iki.fi> # Maintainer: Timo Teräs <timo.teras@iki.fi> pkgname=mdds -pkgver=1.3.1 -pkgrel=1 +pkgver=1.4.3 +pkgrel=0 pkgdesc="Multi-dimensional data index algorithm" url="https://gitlab.com/mdds/mdds" arch="noarch" @@ -10,9 +10,10 @@ license="MIT" depends="" depends_dev="" makedepends="$depends_dev" +checkdepends="boost-dev" install="" subpackages="$pkgname-dev $pkgname-doc" -source="http://kohei.us/files/mdds/src/mdds-$pkgver.tar.bz2 +source="https://kohei.us/files/mdds/src/mdds-$pkgver.tar.bz2 " builddir="$srcdir"/${pkgname}-$pkgver @@ -30,6 +31,11 @@ build() { make } +check() { + cd "$builddir" + make check +} + package() { cd "$builddir" make DESTDIR="$pkgdir" install @@ -37,4 +43,4 @@ package() { mv "$pkgdir"/usr/share/pkgconfig "$pkgdir"/usr/lib/ } -sha512sums="c7ed422c8e0bfb00debd43a12638efc6706d25f9aee0b7cfc15dc711693c4d555e262ae47ff00797c9601c12c0a7eced0f753b263b5f61623470f842814970a8 mdds-1.3.1.tar.bz2" +sha512sums="fd54a93fde89bff74a5ccf84ce5e2e002114297b165ded56a1bae92b28d70864775add140e165c7750f7dbe8ca1bfe83179cd9a835e53312c2e893c9e1f4434c mdds-1.4.3.tar.bz2" |