blob: 93c64bb45a9673ce05973a92ffb146fc731164ef (
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
32
33
34
35
36
37
38
39
40
41
|
# Maintainer: Lev Babiev <harley at hosers dot org>
pkgname=sfwbar
pkgver=1.0_beta16
pkgrel=1
pkgdesc='S* Floating Window taskBar'
arch=('x86_64')
url='https://github.com/LBCrion/sfwbar'
license=('GPL3')
depends=(
'wayland'
'gtk3'
'json-c'
'gtk-layer-shell'
'wayland-protocols'
)
optdepends=(
'alsa-lib: ALSA audio volume control',
'libpulse: pulse audio volume control',
'libmpdclient: music player daemon control',
'libxkbcommon: xkb layout conversion support'
)
makedepends=('meson')
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('238d6394650dfdfc2f36374ec25702bbef57e2cff1d9a149ecb9a52f887c3cdf')
build() {
cd "$pkgname-$pkgver"
meson --prefix=/usr \
--buildtype=plain \
build
ninja -C build
}
package() {
cd "$pkgname-$pkgver"
DESTDIR="$pkgdir" ninja -C build install
}
|