2015-02-23 07:23:41 +08:00
|
|
|
#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}
|
2018-03-14 18:47:27 +08:00
|
|
|
pkgrel=2
|
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')
|
2018-03-10 04:58:01 +08:00
|
|
|
depends=(polkit-kde-agent libcanberra libxkbfile kmenuedit systemsettings ksysguard kpeople baloo qt5-graphicaleffects) #appstream-qt
|
2018-03-14 18:47:27 +08:00
|
|
|
makedepends=(extra-cmake-modules kdoctools boost xf86-input-evdev xf86-input-libinput xf86-input-synaptics xorg-server-devel python3 kdesignerplugin ) #scim libibus
|
2015-04-13 02:19:08 +08:00
|
|
|
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")
|
2016-10-01 03:01:02 +08:00
|
|
|
source=("${PServer}/${pkgver}/${pkgname}-${PVersion}.tar.xz"{,.sig})
|
|
|
|
sha256sums=( $(getSum ${pkgname})
|
|
|
|
'SKIP' )
|
2016-12-05 06:58:03 +08:00
|
|
|
source+=( chakra_defaultPanel.patch::https://bugsfiles.kde.org/attachment.cgi?id=102600 )
|
|
|
|
sha256sums+=( 'af2856ae7904726e6e8cfb3616a51f82fbfee10dc7edc85b579be684601a554c' )
|
2017-08-10 17:46:06 +08:00
|
|
|
validpgpkeys=(${Pvalidpgpkeys[@]})
|
2015-01-15 06:56:56 +08:00
|
|
|
install=${pkgname}.install
|
2014-06-22 22:33:39 +08:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
2016-12-05 06:58:03 +08:00
|
|
|
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
# apply custom patch to change from taskmanager to icontasks
|
|
|
|
patch -Np1 -i "$srcdir/chakra_defaultPanel.patch"
|
2014-06-22 22:33:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd build
|
2015-02-24 05:41:32 +08:00
|
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
2014-06-22 22:33:39 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd build
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
}
|