You are not logged in.

#1 2020-07-28 13:08:20

opotonil
Member
Registered: 2009-09-12
Posts: 34

[request] KDE Plasma Bigscreen

I know it is in beta yet, but would be possible add a pkgbuild to AUR.

https://plasma-bigscreen.org/

Offline

#2 2020-10-25 13:59:59

ArchieMeng
Member
Registered: 2019-09-26
Posts: 6

Re: [request] KDE Plasma Bigscreen

I have already writen one just now.However, it can successfully built bigscreen but end with black screen after launched. (And not tested with optional dependencies Mycroft-core and libcec yet)
Additionally, plasma on Wayland got black screen on my HTPC as well. So, I think I may missed some Wayland dependencies. If you have any idea or if you have already built it manually and run it successfully, please don't hesitate to tell me.

pkgname=plasma-bigscreen-git
pkgver=r337.ddef4e3
pkgrel=1
pkgdesc="A big launcher giving you easy access to any installed apps and skills."
arch=('any')
url="https://plasma-bigscreen.org/"
license=('GPL2')
groups=()
depends=('kio' 
	'kactivities' 
	'kactivities-stats' 
	'ki18n' 
	'kdeconnect' 
	'plasma-workspace'
	'kdeclarative' 
	'plasma-framework' 
	'kirigami2' 
	'kcmutils' 
	'kwayland'
	'xorg-server-xwayland'  
	'plasma-wayland-session')

makedepends=('cmake' 'extra-cmake-modules' 'git') 
optdepends=('libcec: add USB-CEC support in order to be controled by TV remotes'
			'mycroft-core: add voice control support') # Todo: test optional dependecies 
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
source=('git+https://invent.kde.org/plasma/plasma-bigscreen.git')
noextract=()
md5sums=('SKIP')

pkgver() {
	cd "$srcdir/plasma-bigscreen"
	printf "r%s.%s\n" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
	cd "$srcdir/plasma-bigscreen"
	cmake -B build \
	      -DCMAKE_INSTALL_PREFIX="/usr" \
      	      -DCMAKE_BUILD_TYPE=Release 

}


build() {
	cd "$srcdir/plasma-bigscreen/build"
	make
}

package() {
	cd "$srcdir/plasma-bigscreen/build"
	make DESTDIR="$pkgdir/" install
}

Last edited by ArchieMeng (2020-10-25 14:14:35)

Offline

#3 2020-12-02 08:49:57

ArchieMeng
Member
Registered: 2019-09-26
Posts: 6

Re: [request] KDE Plasma Bigscreen

ArchieMeng wrote:

I have already writen one just now.However, it can successfully built bigscreen but end with black screen after launched. (And not tested with optional dependencies Mycroft-core and libcec yet)
Additionally, plasma on Wayland got black screen on my HTPC as well. So, I think I may missed some Wayland dependencies. If you have any idea or if you have already built it manually and run it successfully, please don't hesitate to tell me.

pkgname=plasma-bigscreen-git
pkgver=r337.ddef4e3
pkgrel=1
pkgdesc="A big launcher giving you easy access to any installed apps and skills."
arch=('any')
url="https://plasma-bigscreen.org/"
license=('GPL2')
groups=()
depends=('kio' 
	'kactivities' 
	'kactivities-stats' 
	'ki18n' 
	'kdeconnect' 
	'plasma-workspace'
	'kdeclarative' 
	'plasma-framework' 
	'kirigami2' 
	'kcmutils' 
	'kwayland'
	'xorg-server-xwayland'  
	'plasma-wayland-session')

makedepends=('cmake' 'extra-cmake-modules' 'git') 
optdepends=('libcec: add USB-CEC support in order to be controled by TV remotes'
			'mycroft-core: add voice control support') # Todo: test optional dependecies 
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
source=('git+https://invent.kde.org/plasma/plasma-bigscreen.git')
noextract=()
md5sums=('SKIP')

pkgver() {
	cd "$srcdir/plasma-bigscreen"
	printf "r%s.%s\n" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
	cd "$srcdir/plasma-bigscreen"
	cmake -B build \
	      -DCMAKE_INSTALL_PREFIX="/usr" \
      	      -DCMAKE_BUILD_TYPE=Release 

}


build() {
	cd "$srcdir/plasma-bigscreen/build"
	make
}

package() {
	cd "$srcdir/plasma-bigscreen/build"
	make DESTDIR="$pkgdir/" install
}

It is now available in AUR. But still need further test.
The plasma bigscreen needs another package "plasma-nano" which is also not available in AUR now. So I imported that as well.
https://aur.archlinux.org/packages/plasma-nano-git/
https://aur.archlinux.org/packages/plas … creen-git/

Offline

Board footer

Powered by FluxBB