blob: c7195d59fe606c7b48b90fe3b1513ca0bb99d1d3 (
plain)
1 # Description: Tiny dynamic menu for Wayland
2 # URL: https://github.com/philj56/tofi
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: cairo freetype glib harfbuzz libxkbcommon pango wayland-protocols
5
6 name=tofi
7 version=0.8.1
8 release=1
9 source=(https://github.com/philj56/tofi/archive/v$version/$name-$version.tar.gz)
10
11 build() {
12 meson setup $name-$version build \
13 --prefix=/usr \
14 --buildtype=plain \
15 --wrap-mode nodownload \
16 -D b_lto=true \
17 -D b_pie=true
18
19 meson compile -C build
20 DESTDIR=$PKG meson install -C build
21
22 prt-get isinst bash-completions || rm -r $PKG/usr/share/bash-completion
23
24 rm -r $PKG/usr/share/licenses
25 }
|