blob: 42ab045597590238e37f04fc30c2a1ba5b76b0eb (
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: witt <1989161762 at qq dot com>
pkgname=plasma6-applets-window-buttons
pkgver=0.13.0
pkgrel=2
pkgdesc='Plasma 6 applet to show window buttons in your panels'
arch=('x86_64' 'i686' 'aarch64' 'armv7h')
url='https://github.com/moodyhunter/applet-window-buttons6'
license=(GPL)
depends=('plasma-workspace>=5.90')
makedepends=('extra-cmake-modules')
conflicts=('plasma5-applets-window-buttons')
install="${pkgname}.install"
source=("https://github.com/moodyhunter/applet-window-buttons6/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('2bca557b05528c3e738a3214cfcf9f51539170359256a1fa56f8779e85c9470a')
build() {
cmake -B build -S applet-window-buttons6-${pkgver}
cmake --build build
}
package() {
DESTDIR="${pkgdir}" cmake --install build
}
|