[arch-commits] Commit in breeze/repos (2 files)
Antonio Rojas
arojas at archlinux.org
Thu Jan 12 17:35:38 UTC 2017
Date: Thursday, January 12, 2017 @ 17:35:38
Author: arojas
Revision: 285870
archrelease: copy kde-unstable to kde-unstable-x86_64
Added:
breeze/repos/kde-unstable-x86_64/
breeze/repos/kde-unstable-x86_64/PKGBUILD
(from rev 285869, breeze/kde-unstable/PKGBUILD)
----------+
PKGBUILD | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 66 insertions(+)
Copied: breeze/repos/kde-unstable-x86_64/PKGBUILD (from rev 285869, breeze/kde-unstable/PKGBUILD)
===================================================================
--- kde-unstable-x86_64/PKGBUILD (rev 0)
+++ kde-unstable-x86_64/PKGBUILD 2017-01-12 17:35:38 UTC (rev 285870)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgbase=breeze
+pkgname=('breeze' 'breeze-kde4')
+pkgver=5.8.95
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+makedepends=('extra-cmake-modules' 'frameworkintegration' 'kdelibs'
+ 'automoc4' 'kdecoration' 'kcmutils' 'plasma-framework' 'python')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgbase-$pkgver.tar.xz"{,.sig})
+sha256sums=('beaf2e89e52b3cd550de18ce33bcb1af22f86666158bd8d69ceafe3073a05d82'
+ 'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E' # Jonathan Riddell
+ '348C8651206633FD983A8FC4DEACEA00075E1D76' # KDE Neon
+ 'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+ mkdir -p build{,-kde4}
+}
+
+build() {
+ cd build
+ cmake ../${pkgbase}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DKDE_INSTALL_LIBDIR=lib \
+ -DBUILD_TESTING=OFF
+ make
+
+ cd ../build-kde4
+ cmake ../${pkgbase}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DUSE_KDE4=ON \
+ -DBUILD_TESTING=OFF
+ make
+}
+
+package_breeze() {
+ depends=('frameworkintegration' 'kdecoration' 'breeze-icons' 'kwayland')
+ pkgdesc='Artwork, styles and assets for the Breeze visual style for the Plasma Desktop'
+ optdepends=('breeze-kde4: Breeze widget style for KDE4 applications'
+ 'breeze-gtk: Breeze widget style for GTK applications'
+ 'kcmutils: for breeze-settings')
+ groups=('plasma')
+
+ cd build
+ make DESTDIR="$pkgdir" install
+}
+
+package_breeze-kde4() {
+ pkgdesc='Breeze widget style for KDE4 applications'
+ depends=('kdelibs')
+
+ cd build-kde4
+ make DESTDIR="$pkgdir" install
+
+ # needed for pure Qt4 apps
+ install -d "$pkgdir"/usr/lib/qt4/plugins/styles
+ ln -s /usr/lib/kde4/plugins/styles/breeze.so "$pkgdir"/usr/lib/qt4/plugins/styles
+}
More information about the arch-commits
mailing list