blob: a845a7de67778edabf50b47b7eb032c2f2cd3761 (
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
|
# Maintainer: Frank Krick frank.krick@gmail.com
pkgname=wlavu-git
pkgver=0.0.1
pkgrel=1
pkgdesc="Wayland-based PipeWire VU-meter"
arch=('x86_64')
url=https://git.sr.ht/~kennylevinsen/wlavu
depends=('pipewire' 'wayland-protocols' 'wayland')
source=('git+https://git.sr.ht/~kennylevinsen/wlavu')
md5sums=('SKIP')
license=('MIT')
prepare() {
mkdir tmp
cd tmp
git clone ../wlavu
}
build() {
cd tmp/wlavu
meson setup build --prefix /usr --optimization 3 --buildtype release
cd build
meson compile
}
package() {
cd tmp/wlavu/build
meson install --destdir "$pkgdir"
}
|