core/kde-gtk-config/PKGBUILD

36 lines
842 B
Bash
Raw Normal View History

# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/kde-gtk-config-frameworks
2015-01-15 05:23:15 +08:00
source ../plasma.conf
2015-11-26 04:23:31 +08:00
pkgname=kde-gtk-config
2015-01-15 05:23:15 +08:00
pkgver=${PVersion}
2018-02-08 03:39:13 +08:00
pkgrel=1
pkgdesc="GTK2 and GTK3 Configuration for KDE"
2015-01-15 05:23:15 +08:00
arch=('x86_64')
url='projects.kde.org/'
license=('LGPL')
2018-02-08 03:39:13 +08:00
depends=(knewstuff kde-cli-tools gtk3 gsettings-desktop-schemas)
2018-03-10 04:58:01 +08:00
makedepends=(extra-cmake-modules gtk2 python3)
2018-02-08 03:39:13 +08:00
optdepends=('gtk2: GTK2 apps support')
2015-01-15 05:23:15 +08:00
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[@]})
install=${pkgname}.install
2015-01-15 05:23:15 +08:00
prepare() {
mkdir -p build
}
build() {
cd build
2015-11-26 04:23:31 +08:00
cmake_kf5 ../${pkgname}-${pkgver}
make
2015-01-15 05:23:15 +08:00
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}