diff options
author | Bart Ribbers <bribbers@disroot.org> | 2019-10-14 19:46:37 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-10-17 12:13:50 -0300 |
commit | 49afd00440e7a1725cb4701a2ff879e994a55389 (patch) | |
tree | 915f5c810b7027a5a99e9ed935ab50f9d8dde87e /community/kiconthemes | |
parent | e58bd7992d0d7b657f02561eb4c255bdfe6751d6 (diff) | |
download | aports-49afd00440e7a1725cb4701a2ff879e994a55389.tar.bz2 aports-49afd00440e7a1725cb4701a2ff879e994a55389.tar.xz |
community/kde-frameworks: upgrade to 5.63.0
Diffstat (limited to 'community/kiconthemes')
-rw-r--r-- | community/kiconthemes/APKBUILD | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/community/kiconthemes/APKBUILD b/community/kiconthemes/APKBUILD index 9e83d1f4ee..9ccba10fca 100644 --- a/community/kiconthemes/APKBUILD +++ b/community/kiconthemes/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Bart Ribbers <bribbers@disroot.org> # Maintainer: Bart Ribbers <bribbers@disroot.org> pkgname=kiconthemes -pkgver=5.62.0 +pkgver=5.63.0 pkgrel=0 pkgdesc="Support for icon themes" arch="all" @@ -14,8 +14,15 @@ source="https://download.kde.org/stable/frameworks/${pkgver%.*}/kiconthemes-$pkg subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" options="!check" # 1 Test fail +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 \ @@ -24,11 +31,13 @@ build() { } check() { + cd "$builddir"/build CTEST_OUTPUT_ON_FAILURE=TRUE xvfb-run ctest } package() { + cd "$builddir"/build DESTDIR="$pkgdir" make install } -sha512sums="141b01813a6794f712ea6a365bf69551d6cdb2df09a56e465def87f157481f6b96968491c770083c0d28e1450e68133698f6b6889796fb9f256b75e41398cb34 kiconthemes-5.62.0.tar.xz" +sha512sums="71d0f70d49dfac18414aca9b963d60b3059c47fcd77868611cb9331b3606f0443e040d2dd1746d2096213c7bd3300c3de6322137446cdd2248dda1b18d931170 kiconthemes-5.63.0.tar.xz" |