21 lines
549 B
Plaintext
21 lines
549 B
Plaintext
# Description: taskbar designed for stacking Wayland compositors
|
|
# URL: https://github.com/LBCrion/sfwbar
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: gtk-layer-shell json-c
|
|
# Optional: pulseaudio mpd
|
|
|
|
name=sfwbar
|
|
version=1.0_beta12
|
|
release=1
|
|
source=(https://github.com/LBCrion/$name/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd ${name}*
|
|
|
|
meson setup build --buildtype=release --prefix=/usr
|
|
ninja -C build -j ${JOBS:-1}
|
|
|
|
DESTDIR=$PKG ninja -C build install
|
|
rm $PKG/usr/share/sfwbar/icons/weather/LICENSE
|
|
}
|