diff options
Diffstat (limited to 'community/oxygen')
-rw-r--r-- | community/oxygen/APKBUILD | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/community/oxygen/APKBUILD b/community/oxygen/APKBUILD index 1af56365c1..f27ad5aad2 100644 --- a/community/oxygen/APKBUILD +++ b/community/oxygen/APKBUILD @@ -1,18 +1,25 @@ # Contributor: Bart Ribbers <bribbers@disroot.org> # Maintainer: Bart Ribbers <bribbers@disroot.org> pkgname=oxygen -pkgver=5.16.5 +pkgver=5.17.0 pkgrel=0 pkgdesc="Artwork, styles and assets for the Oxygen visual style for the Plasma Desktop" arch="all" url="https://www.kde.org/workspaces/plasmadesktop/" license="LGPL-2.1-or-later" makedepends="extra-cmake-modules qt5-qtbase-dev ki18n-dev kconfig-dev kguiaddons-dev kwidgetsaddons-dev kservice-dev kcompletion-dev frameworkintegration-dev kwindowsystem-dev xcb-util-dev kwayland-dev kcmutils-dev kdecoration-dev" -source="$pkgname-$pkgver.tar.xz::https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz" +source="$pkgname-$pkgver.tar.xz::https://download.kde.org/stable/plasma/$pkgver/oxygen-$pkgver.tar.xz" subpackages="$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 @@ -20,10 +27,12 @@ build() { } check() { + cd "$builddir"/build CTEST_OUTPUT_ON_FAILURE=TRUE ctest } package() { + cd "$builddir"/build DESTDIR="$pkgdir" make install } -sha512sums="6ed14b6fc454e22e837525efa7298245d62cd7c86a0f8b608960141f8820722fa9996214848309cb89d4212d9a8ad1384ce82e7917b62114aea8d65247b68951 oxygen-5.16.5.tar.xz" +sha512sums="409968bcff015acc91791cc717648c0a7fcec947edac68d6fccf0afb63d82d9f65258aa02221ca4e57b525247f6ff41a408ed825813aaa71e02ebd0c63f13de6 oxygen-5.17.0.tar.xz" |