core/breeze-gtk/PKGBUILD

37 lines
824 B
Bash
Raw Normal View History

2015-11-26 04:23:31 +08:00
source ../plasma.conf
pkgname=breeze-gtk
pkgver=${PVersion}
2016-08-04 21:13:45 +08:00
pkgrel=1
2015-11-26 04:23:31 +08:00
pkgdesc="Breeze port for GTK. (GIT version)"
arch=('x86_64')
url='https://quickgit.kde.org/?p=breeze-gtk.git'
license=('LGPL')
depends=('qt5-base')
optdepends=('gtk2: GTK+2 theme'
'gtk3: GTK+3 theme')
makedepends=('git' 'cmake' 'extra-cmake-modules' 'gtk2')
conflicts=('gnome-breeze')
replaces=('gnome-breeze')
group=('gtk-integration') # groups=('plasma')
options=("debug")
2016-10-01 03:01:02 +08:00
source=("${PServer}/${pkgver}/${pkgname}-${PVersion}.tar.xz"{,.sig})
sha256sums=( $(getSum ${pkgname})
'SKIP' )
validpgpkeys=(${Pvalidpgpkeys})
2015-11-26 04:23:31 +08:00
prepare() {
mkdir -p build
2016-03-24 01:43:38 +08:00
cd ${pkgname}-${pkgver}
2015-11-26 04:23:31 +08:00
}
build() {
cd build
2016-07-29 09:19:25 +08:00
cmake_kf5 ../${pkgname}-${pkgver} -DWITH_GTK3_VERSION=3.20
2015-11-26 04:23:31 +08:00
make
}
package() {
cd build
make DESTDIR="$pkgdir" install
2016-03-24 01:43:38 +08:00
}