blob: 478afd4ffb919649328131414854afa49d60f6b0 (
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
|
# Maintainer: John Lindgren <john@jlindgren.net>
pkgname=qmpanel
pkgver=0.5
pkgrel=1
pkgdesc="A Minimal Qt-Based Desktop Panel"
arch=("x86_64")
url="https://github.com/jlindgren90/qmpanel"
license=("LGPL2.1")
makedepends=(
"meson"
"cmake" # needed to find layer-shell-qt
)
depends=(
"glib2"
"kwindowsystem"
"layer-shell-qt"
"libxcb"
)
source=("https://github.com/jlindgren90/qmpanel/archive/qmpanel-$pkgver.tar.gz")
sha256sums=("010541af51814f79f4a94df1c06dd5d4922973b0ba2e198a2f26a4e7a9bb709b")
build() {
arch-meson qmpanel-qmpanel-$pkgver build
meson compile -C build
}
package() {
meson install -C build --destdir "$pkgdir"
}
|