commit 91c76d31a54e4e24be1f69a3a02a3c08bb4e3506 Author: Tim Biermann <tbier@posteo.de> Date: Sun Oct 30 21:41:23 2022 +0000 tofi: initial commit, version 0.6.0 diff --git a/tofi/.footprint b/tofi/.footprint new file mode 100644 index 000000000..834a54565 --- /dev/null +++ b/tofi/.footprint @@ -0,0 +1,10 @@ +drwxr-xr-x root/root etc/ +drwxr-xr-x root/root etc/xdg/ +drwxr-xr-x root/root etc/xdg/tofi/ +-rw-r--r-- root/root etc/xdg/tofi/config +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/tofi +lrwxrwxrwx root/root usr/bin/tofi-drun -> tofi +lrwxrwxrwx root/root usr/bin/tofi-run -> tofi +drwxr-xr-x root/root usr/share/ diff --git a/tofi/.signature b/tofi/.signature new file mode 100644 index 000000000..e242784af --- /dev/null +++ b/tofi/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3/sNHC8QTKYWE0I0Ssm4GM7wonNPW5uWUyT9ClhCWZU84h9sXgsOTEwipGmvk6zfxRInSDTEP2sTYiExoO9k8ww= +SHA256 (Pkgfile) = 5cca3e0a162e5650ec00ada5a402cb0d97d3ab9944505174bc162dff0b2076c7 +SHA256 (.footprint) = a39e346fe141faca675bca8f124f892f22dff925a43b3e63cb1c98186121019e +SHA256 (tofi-0.6.0.tar.gz) = 65a3ddd202ae7b8bedeee2efb92253a4cca929654119ecdfd76f7d4c67315016 diff --git a/tofi/Pkgfile b/tofi/Pkgfile new file mode 100644 index 000000000..11f511d1f --- /dev/null +++ b/tofi/Pkgfile @@ -0,0 +1,25 @@ +# Description: Tiny dynamic menu for Wayland +# URL: https://github.com/philj56/tofi +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: cairo freetype glib harfbuzz libxkbcommon pango wayland-protocols + +name=tofi +version=0.6.0 +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 +}