blob: b5fd64423d533fde833a43678aa9b10c0c9c585d (
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
42
43
44
45
46
47
48
49
50
|
pkgname=sfwbar-git
_pkgname=sfwbar
pkgver=r942.de920df
pkgrel=1
pkgdesc='S* Floating Window taskBar, git version'
arch=('x86_64' 'aarch64')
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'
'git'
)
conflicts=('sfwbar')
provides=('sfwbar')
source=("${pkgname%-*}::git+https://github.com/LBCrion/sfwbar.git")
md5sums=('SKIP')
sha512sums=('SKIP')
pkgver() {
cd "$_pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$_pkgname"
meson --prefix=/usr \
--buildtype=plain \
build
ninja -C build
}
package() {
cd "$_pkgname"
DESTDIR="$pkgdir" ninja -C build install
}
|