mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-14 02:19:02 +08:00
33 lines
648 B
Bash
33 lines
648 B
Bash
source ../plasma.conf
|
|
|
|
pkgname=breeze-gtk
|
|
pkgver=${PVersion}
|
|
pkgrel=2
|
|
pkgdesc="Breeze port for GTK. (GIT version)"
|
|
arch=('x86_64')
|
|
url='https://quickgit.kde.org/?p=breeze-gtk.git'
|
|
license=('LGPL')
|
|
depends=(qt5-base)
|
|
makedepends=(extra-cmake-modules)
|
|
group=('gtk-integration' 'plasma')
|
|
options=("debug")
|
|
source=("${PServer}/${pkgver}/${pkgname}-${PVersion}.tar.xz"{,.sig})
|
|
sha256sums=( $(getSum ${pkgname})
|
|
'SKIP' )
|
|
validpgpkeys=(${Pvalidpgpkeys[@]})
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver} -DWITH_GTK3_VERSION=3.20
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|