summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7fd2c44a5c84f9b2ced4bf966660311b80374996 (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.4
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=("501e0307e6ec096452e66fecfecc7149f6aa593d2cb37d2c3fcdc2b0d29c9af8")

build() {
  arch-meson qmpanel-qmpanel-$pkgver build
  meson compile -C build
}

package() {
  meson install -C build --destdir "$pkgdir"
}