diff options
author | Bart Ribbers <bribbers@disroot.org> | 2019-07-14 00:55:42 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-07-13 22:20:39 -0300 |
commit | c702f2a812cfbc5c0c1a68b6f120cf332f788f1f (patch) | |
tree | 800e1687809b5e688995a9948d19af9e577a167d /community/breeze-icons/APKBUILD | |
parent | 8d48f29796e55f6906ecb8cb8ef27e1b4dc3b820 (diff) | |
download | aports-c702f2a812cfbc5c0c1a68b6f120cf332f788f1f.tar.bz2 aports-c702f2a812cfbc5c0c1a68b6f120cf332f788f1f.tar.xz |
community/kde-frameworks: move from testing
Diffstat (limited to 'community/breeze-icons/APKBUILD')
-rw-r--r-- | community/breeze-icons/APKBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/breeze-icons/APKBUILD b/community/breeze-icons/APKBUILD new file mode 100644 index 0000000000..95ce50079f --- /dev/null +++ b/community/breeze-icons/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Bart Ribbers <bribbers@disroot.org> +# Maintainer: Bart Ribbers <bribbers@disroot.org> +pkgname=breeze-icons +pkgver=5.60.0 +pkgrel=0 +pkgdesc="Breeze icon themes" +arch="noarch" +url="https://community.kde.org/Frameworks" +license="LGPL-3.0-or-later" +makedepends="extra-cmake-modules qt5-qtbase-dev" +source="https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz" + +build() { + cmake \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DBINARY_ICONS_RESOURCE=ON + make +} + +check() { + CTEST_OUTPUT_ON_FAILURE=TRUE ctest -E dupe +} + +package() { + DESTDIR="$pkgdir" make install +} +sha512sums="ffed5778099ac6b735e80d24a8020871bb50c13a04fd437ab619fc8abc07ccd488a46fe7da0c67826ce5b2297a43e86ccbf38c79ffc1a86c5b6a11b72ea8108e breeze-icons-5.60.0.tar.xz" |