blob: d1e46f4ed74bf954ed4a1318deb500197a4d76b3 (
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
|
# Maintainer: HurricanePootis <hurricanepootis@protonamil.com
pkgname=krunner-symbols-git
pkgver=1.1.0.r35.g844195b
pkgrel=1
pkgdesc=" A lightweight KRunner plugin (Plasma 6) to retrieve unicode symbols, or any other string, based on a corresponding keyword."
arch=('x86_64')
url="https://github.com/domschrei/krunner-symbols"
license=('GPL-3.0-only')
depends=('krunner' 'qt6-5compat' 'glibc' 'kcoreaddons' 'qt6-base' 'gcc-libs' 'ki18n' 'kconfig' 'kservice' 'krunner' 'ktextwidgets')
makedepends=('cmake' 'git' 'extra-cmake-modules' 'libplasma')
provides=('krunner-symbols')
conflicts=('krunner-symbols')
source=("git+$url.git#branch=plasma6")
sha256sums=('SKIP')
validpgpkeys=()
pkgver(){
cd "$srcdir/${pkgname::-4}"
git describe --long --tags --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$srcdir"
cmake -B build -S ${pkgname::-4} \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr \
-DLOCATION_PLUGIN=/usr/lib/qt6/plugins \
-DLOCATION_CONFIG="share/config"
cmake --build build
}
package() {
cd "$srcdir"
DESTDIR="$pkgdir" cmake --install build
}
|