wofi: initial commit, version 1.2.4

This commit is contained in:
Tim Biermann 2021-09-19 18:56:57 +02:00
parent 0e32a760f2
commit 57b245f3c1
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 55 additions and 0 deletions

30
wofi/.footprint Normal file
View File

@ -0,0 +1,30 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/wofi
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/wofi-1/
-rw-r--r-- root/root usr/include/wofi-1/config.h
-rw-r--r-- root/root usr/include/wofi-1/map.h
-rw-r--r-- root/root usr/include/wofi-1/utils.h
-rw-r--r-- root/root usr/include/wofi-1/utils_g.h
-rw-r--r-- root/root usr/include/wofi-1/widget_builder_api.h
-rw-r--r-- root/root usr/include/wofi-1/wofi_api.h
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/wofi.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/wofi.1.gz
drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/wofi-api.3.gz
-rw-r--r-- root/root usr/share/man/man3/wofi-config.3.gz
-rw-r--r-- root/root usr/share/man/man3/wofi-map.3.gz
-rw-r--r-- root/root usr/share/man/man3/wofi-utils.3.gz
-rw-r--r-- root/root usr/share/man/man3/wofi-widget-builder.3.gz
-rw-r--r-- root/root usr/share/man/man3/wofi.3.gz
drwxr-xr-x root/root usr/share/man/man5/
-rw-r--r-- root/root usr/share/man/man5/wofi.5.gz
drwxr-xr-x root/root usr/share/man/man7/
-rw-r--r-- root/root usr/share/man/man7/wofi-keys.7.gz
-rw-r--r-- root/root usr/share/man/man7/wofi.7.gz

5
wofi/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3wYIDqujY2OO7fmgFto+ntyGvXRjFRT74DVnaeglmKZNmChUnNZigbO5Ivz8krrvf/jWd/5BRN/sZNfx+KDjjAc=
SHA256 (Pkgfile) = 889a0ef286bca2546e3edd6bf68834a41dc9ec1cb3b636f6c68a9100ed53726b
SHA256 (.footprint) = e7deab63f78ebebaa825e323a17482149b026954ead5e28a9f43eb2d3c81c0c1
SHA256 (v1.2.4.tar.gz) = b48da42b9750f149704eb6dbd60ab80b28c5b0d7aaf7e9de75dd9aab585e8e9a

20
wofi/Pkgfile Normal file
View File

@ -0,0 +1,20 @@
# Description: rofi like application launcher written for wayland
# URL: https://hg.sr.ht/~scoopta/wofi
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: gtk3 wayland-protocols
name=wofi
version=1.2.4
release=1
source=(https://hg.sr.ht/~scoopta/wofi/archive/v$version.tar.gz)
build() {
meson setup $name-v$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
}