core/plasma-desktop/PKGBUILD

41 lines
1.3 KiB
Bash
Raw Normal View History

#contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/plasma-desktop
2014-06-22 22:33:39 +08:00
source ../plasma.conf
pkgname=plasma-desktop
pkgver=${PVersion}
2016-03-03 05:44:28 +08:00
pkgrel=1
2014-12-01 13:27:04 +08:00
pkgdesc='KDE Plasma Desktop'
2014-10-23 03:29:25 +08:00
arch=('x86_64')
2014-12-01 13:27:04 +08:00
url='https://www.kde.org/workspaces/plasmadesktop/'
2014-06-22 22:33:39 +08:00
license=('LGPL')
2016-03-23 03:33:31 +08:00
depends=('qt5-graphicaleffects' 'powerdevil' 'polkit-kde-agent' 'libcanberra'
2016-04-06 06:05:57 +08:00
'kwin' 'kpeople' 'libusb-compat' 'libxkbfile' 'kmenuedit' 'systemsettings' 'ksysguard' 'breeze' 'krunner' 'baloo' 'kfilemetadata' 'graphite' 'kactivities-stats'
#sddm can be removed as a dependency in the future, only added here to automate the switch to Plasma 5
'sddm-kcm')
2015-12-19 17:13:00 +08:00
makedepends=('extra-cmake-modules' 'kdoctools' 'boost' 'xf86-input-synaptics' 'xorg-server-devel' 'xf86-input-evdev')
optdepends=('plasma-nm: Network manager applet'
'xf86-input-synaptics: Manage touchpad')
2014-06-22 22:33:39 +08:00
checkdepends=("cmake")
2016-03-23 03:33:31 +08:00
replaces=('kde-workspace')
conflicts=('kde-workspace')
2014-06-22 22:33:39 +08:00
groups=('plasma')
options=("debug")
2015-12-16 03:38:34 +08:00
source=("${PServer}/${pkgver}/${pkgname}-${PSubVersion}.tar.xz")
sha256sums=( $(getSum ${pkgname}))
install=${pkgname}.install
2014-06-22 22:33:39 +08:00
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
2014-06-22 22:33:39 +08:00
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}