18 lines
497 B
Plaintext
18 lines
497 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
|
|
|
|
name=sfwbar
|
|
version=1.0_beta9
|
|
release=1
|
|
source=(https://github.com/LBCrion/$name/archive/refs/tags/v$version.tar.gz)
|
|
renames=($name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd ${name}*
|
|
meson setup --buildtype=release --prefix=/usr build
|
|
ninja -C build -j ${JOBS:-1}
|
|
DESTDIR=$PKG ninja -C build install
|
|
}
|