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/solid | |
parent | e58bd7992d0d7b657f02561eb4c255bdfe6751d6 (diff) | |
download | aports-49afd00440e7a1725cb4701a2ff879e994a55389.tar.bz2 aports-49afd00440e7a1725cb4701a2ff879e994a55389.tar.xz |
community/kde-frameworks: upgrade to 5.63.0
Diffstat (limited to 'community/solid')
-rw-r--r-- | community/solid/APKBUILD | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/community/solid/APKBUILD b/community/solid/APKBUILD index 70a2d03a1d..eba444685b 100644 --- a/community/solid/APKBUILD +++ b/community/solid/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Bart Ribbers <bribbers@disroot.org> # Maintainer: Bart Ribbers <bribbers@disroot.org> pkgname=solid -pkgver=5.62.0 +pkgver=5.63.0 pkgrel=0 pkgdesc="Hardware integration and detection" arch="all" @@ -12,8 +12,15 @@ makedepends="$depends_dev extra-cmake-modules qt5-qttools-dev doxygen eudev-dev source="https://download.kde.org/stable/frameworks/${pkgver%.*}/solid-$pkgver.tar.xz" subpackages="$pkgname-dev $pkgname-libs $pkgname-doc $pkgname-lang" +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 \ @@ -22,10 +29,12 @@ build() { } check() { + cd "$builddir"/build CTEST_OUTPUT_ON_FAILURE=TRUE ctest } package() { + cd "$builddir"/build DESTDIR="$pkgdir" make install } -sha512sums="75cf1307b9c6c3c1de1fdbc653cc03866c35d755190b4d4c308b86921d424df037da21dbb013edfdaeb9d1249ee67e958e44ba4f6918d4873186f44d84485697 solid-5.62.0.tar.xz" +sha512sums="135eb9a71699a22d5dd201402c87216961a17aadc88bf326dee10df007134a09fcfcab61792d9e7c8323abdc7b081a9117778934aca1b0e408b90d11f245f45a solid-5.63.0.tar.xz" |