# $Id: PKGBUILD 281836 2016-11-22 13:29:03Z arojas $ # Maintainer (Arch): Felix Yan # Contributor (Arch): Andrea Scarpino # Contributor (Arch): Antonio Rojas # Maintainer: André Silva pkgname=kinfocenter pkgver=5.8.4 pkgrel=1.parabola1 pkgdesc='A utility that provides information about a computer system (Parabola rebranded)' arch=('i686' 'x86_64' 'armv7h') url='https://www.kde.org/applications/system/kinfocenter/' license=('LGPL') depends=('kdelibs4support' 'kcmutils' 'pciutils' 'glu' 'libraw1394' 'kwayland') makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework' 'kdesignerplugin') conflicts=('kdebase-workspace') groups=('plasma') source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig} 'parabola-logo.svg::https://wiki.parabola.nu/images/a/af/Parabolagnu%2Blinuxlibre-dark-scalable.svg' 'kcm-about-distrorc') sha256sums=('6dafaf7fc5d74f959aa358b6247045fce4093a73863c25b1c3b76e3817b9dbd6' 'SKIP' '75136b90185242891cbeb993285f400bcc9c6c70fdccb0f5e50790acaf875b92' '9c874f9ee68dc1c46fab1255f28bdca892e664b35208220db77ab59e04617a96') validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E' # Jonathan Riddell '348C8651206633FD983A8FC4DEACEA00075E1D76' # KDE Neon 'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson prepare() { mkdir -p build } build() { cd build cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DKDE_INSTALL_LIBDIR=lib \ -DBUILD_TESTING=OFF make } package() { cd build make DESTDIR="${pkgdir}" install # Install Parabola logo install -Dm644 "$srcdir"/parabola-logo.svg "$pkgdir"/usr/share/about-distro/parabola-logo.svg install -Dm644 "$srcdir"/kcm-about-distrorc "$pkgdir"/etc/xdg/kcm-about-distrorc }