mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
33 lines
748 B
Bash
33 lines
748 B
Bash
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/kinfocenter
|
|
source ../plasma.conf
|
|
|
|
pkgname=kinfocenter
|
|
pkgver=${PVersion}
|
|
pkgrel=1
|
|
pkgdesc='KInfocenter'
|
|
arch=('x86_64')
|
|
url='https://projects.kde.org/projects/kde/workspace/kinfocenter'
|
|
license=('LGPL')
|
|
depends=('kdelibs4support' 'kcmutils' 'pciutils' 'glu' 'libraw1394' 'kwayland')
|
|
makedepends=('extra-cmake-modules')
|
|
conflicts=('kde-workspace')
|
|
groups=('plasma')
|
|
options=("debug")
|
|
source=("${PServer}/${pkgver}/${pkgname}-${PSubVersion}.tar.xz")
|
|
sha256sums=( $(getSum ${pkgname}) )
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|