summaryrefslogtreecommitdiff
path: root/libre/kinfocenter/PKGBUILD
blob: 7aae95af8d54d662113a9572e4c2fa9cf1ae58ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# $Id: PKGBUILD 276224 2016-09-13 15:50:16Z arojas $
# Maintainer (Arch): Felix Yan <felixonmars@archlinux.org>
# Contributor (Arch): Andrea Scarpino <andrea@archlinux.org>
# Contributor (Arch): Antonio Rojas
# Maintainer: André Silva <emulatorman@parabola.nu>

pkgname=kinfocenter
pkgver=5.7.5
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=('f9cdf5575d332c4bd7f46238d3cd957a27b534a0e163d58fc7844bbc65115238'
            '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
}