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/kemoticons | |
parent | e58bd7992d0d7b657f02561eb4c255bdfe6751d6 (diff) | |
download | aports-49afd00440e7a1725cb4701a2ff879e994a55389.tar.bz2 aports-49afd00440e7a1725cb4701a2ff879e994a55389.tar.xz |
community/kde-frameworks: upgrade to 5.63.0
Diffstat (limited to 'community/kemoticons')
-rw-r--r-- | community/kemoticons/APKBUILD | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/community/kemoticons/APKBUILD b/community/kemoticons/APKBUILD index b1678d2107..19a4f61f39 100644 --- a/community/kemoticons/APKBUILD +++ b/community/kemoticons/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Bart Ribbers <bribbers@disroot.org> # Maintainer: Bart Ribbers <bribbers@disroot.org> pkgname=kemoticons -pkgver=5.62.0 +pkgver=5.63.0 pkgrel=0 pkgdesc="Support for emoticons and emoticons themes" arch="all" @@ -13,8 +13,15 @@ checkdepends="xvfb-run" source="https://download.kde.org/stable/frameworks/${pkgver%.*}/kemoticons-$pkgver.tar.xz" subpackages="$pkgname-dev $pkgname-doc" +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 \ @@ -23,10 +30,12 @@ build() { } check() { + cd "$builddir"/build CTEST_OUTPUT_ON_FAILURE=TRUE xvfb-run ctest } package() { + cd "$builddir"/build DESTDIR="$pkgdir" make install } -sha512sums="e21f181d120980420a293aed02e1f13aa953535efc09d6c1d03aebd8217c99b73fa4a72243d0f23a3f9627d5b3bec3b9037341e814d00e5c8923cfa6817c741b kemoticons-5.62.0.tar.xz" +sha512sums="b0a52c3cdba7e5c929538c529b38406a4a844c264fdc9afc1a500332f5b6c50d27cd7bd9393cdf7db158a04e51fe1ecc734e26bf970b6fa8a73cf9830e6bdb28 kemoticons-5.63.0.tar.xz" |