2022-10-30 21:41:23 +00:00
|
|
|
# Description: Tiny dynamic menu for Wayland
|
|
|
|
# URL: https://github.com/philj56/tofi
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2023-04-09 21:48:04 +02:00
|
|
|
# Depends on: libxkbcommon pango wayland-protocols
|
2022-10-30 21:41:23 +00:00
|
|
|
|
|
|
|
name=tofi
|
2023-04-10 12:25:40 +02:00
|
|
|
version=0.9.1
|
2022-10-30 21:41:23 +00:00
|
|
|
release=1
|
|
|
|
source=(https://github.com/philj56/tofi/archive/v$version/$name-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
meson setup $name-$version build \
|
|
|
|
--prefix=/usr \
|
|
|
|
--buildtype=plain \
|
|
|
|
--wrap-mode nodownload \
|
|
|
|
-D b_lto=true \
|
|
|
|
-D b_pie=true
|
|
|
|
|
|
|
|
meson compile -C build
|
|
|
|
DESTDIR=$PKG meson install -C build
|
|
|
|
|
|
|
|
prt-get isinst bash-completions || rm -r $PKG/usr/share/bash-completion
|
|
|
|
|
|
|
|
rm -r $PKG/usr/share/licenses
|
|
|
|
}
|