blob: d947dd45223abef434d4821643e3d75d60f8db24 (
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
|
# Maintainer: Luis Bocanegra <luisbocanegra17b at gmail dot com>
_gitname=plasma-panel-spacer-extended
pkgname=plasma6-applets-panel-spacer-extended
pkgver=1.10.0
pkgrel=1
pkgdesc="Mouse gestures for the KDE Plasma Panel, drag window, run any shortcut, command, application with configurable mouse actions!"
arch=('any')
url="https://github.com/luisbocanegra/$_gitname"
license=('GPL3')
depends=('plasma-workspace' 'kdeplasma-addons')
makedepends=('extra-cmake-modules')
source=("${_gitname}-${pkgver}.tar.gz::$url/archive/v${pkgver}/${_gitname}-${pkgver}.tar.gz")
sha256sums=('cf77c031224e6d507f96752099e12690ff3f583b1bf9e88a12729fcb78f15cc0')
build() {
cd "${srcdir}/${_gitname}-$pkgver"
cmake -B build -S .
cmake --build build
}
package() {
cd "${srcdir}/${_gitname}-$pkgver"
DESTDIR="$pkgdir" cmake --install build
}
|