diff options
author | Timo Teräs <timo.teras@iki.fi> | 2018-02-06 16:06:08 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2018-02-06 16:06:08 +0000 |
commit | 17615b30db07792d47057c688024df5083a7f367 (patch) | |
tree | c26aa1e2df841c1f872ba8d72db0d5a1362f929c /testing | |
parent | d6435eed9dd834e3626efca3ac12cce11be83405 (diff) | |
download | aports-17615b30db07792d47057c688024df5083a7f367.tar.bz2 aports-17615b30db07792d47057c688024df5083a7f367.tar.xz |
testing/libneo4j-client: modernize
Diffstat (limited to 'testing')
-rw-r--r-- | testing/libneo4j-client/APKBUILD | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/testing/libneo4j-client/APKBUILD b/testing/libneo4j-client/APKBUILD index 6bb1e08283..b0455be6e0 100644 --- a/testing/libneo4j-client/APKBUILD +++ b/testing/libneo4j-client/APKBUILD @@ -14,24 +14,23 @@ install="" subpackages="$pkgname-dev $pkgname-doc::noarch neo4j-client:client neo4j-client-doc::noarch" source="https://github.com/cleishm/libneo4j-client/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz" -_builddir="$srcdir"/"$pkgname-$pkgver" +builddir="$srcdir"/"$pkgname-$pkgver" build() { - cd "$_builddir" + cd "$builddir" ./configure \ - --prefix=/usr \ - || return 1 - make || return 1 - make doc || return 1 + --prefix=/usr + make + make doc } check() { - cd "$_builddir" - make LIBS="-lfts" check || return 1 + cd "$builddir" + make LIBS="-lfts" check } package() { - cd "$_builddir" - make DESTDIR="$pkgdir" install || return 1 + cd "$builddir" + make DESTDIR="$pkgdir" install mkdir -p "$pkgdir"/usr/share/doc/libneo4j-client mv doc/html/* "$pkgdir"/usr/share/doc/libneo4j-client/ } |