diff options
author | Bart Ribbers <bribbers@disroot.org> | 2019-11-12 14:08:42 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-11-15 11:36:41 +0100 |
commit | a3698bd3bce5b7a2e76c6d439fae4af875ec3d2d (patch) | |
tree | 92642bd5660ad9118888865f8fa4c101ee82b281 /community/kfind/APKBUILD | |
parent | f68fba11e3d2125efe2416cbd7d0f429ab92ec1d (diff) | |
download | aports-a3698bd3bce5b7a2e76c6d439fae4af875ec3d2d.tar.bz2 aports-a3698bd3bce5b7a2e76c6d439fae4af875ec3d2d.tar.xz |
{community,testing}/kde-applications: upgrade to 19.08.3
Diffstat (limited to 'community/kfind/APKBUILD')
-rw-r--r-- | community/kfind/APKBUILD | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/community/kfind/APKBUILD b/community/kfind/APKBUILD index cd25e54c6c..e37b6cb7f0 100644 --- a/community/kfind/APKBUILD +++ b/community/kfind/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Bart Ribbers <bribbers@disroot.org> # Maintainer: Bart Ribbers <bribbers@disroot.org> pkgname=kfind -pkgver=19.08.2 +pkgver=19.08.3 pkgrel=0 arch="all" url="https://www.kde.org/applications/utilities/kfind" @@ -12,8 +12,15 @@ source="https://download.kde.org/stable/applications/$pkgver/src/kfind-$pkgver.t subpackages="$pkgname-doc $pkgname-lang" options="!check" # No tests +prepare() { + default_prepare + + mkdir "$builddir"/build +} + build() { - cmake \ + cd "$builddir"/build + cmake "$builddir" \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib @@ -21,11 +28,13 @@ build() { } check() { + cd "$builddir"/build CTEST_OUTPUT_ON_FAILURE=TRUE ctest } package() { + cd "$builddir"/build DESTDIR="$pkgdir" make install } -sha512sums="36cc81a744e4bf81015e5611c6811034a1c236ce8603ed3c3fa2e0d8acf6cb38e86a0e92a55a726a96043805be91dc4e10e7c12be960a22b97f43928a089fa70 kfind-19.08.2.tar.xz" +sha512sums="d78f00640b40f7143299f3aeef9c16eaca30893daab4d5153c6e3fd2683383e79c2c992cfdc0fc1311386757524dc7e7896341d8b2c1869f5e03321b5f66432b kfind-19.08.3.tar.xz" |