From 57b245f3c18c4adfae3da6bf7c9594d74a4cabb0 Mon Sep 17 00:00:00 2001 From: Tim Biermann Date: Sun, 19 Sep 2021 18:56:57 +0200 Subject: [PATCH] wofi: initial commit, version 1.2.4 --- wofi/.footprint | 30 ++++++++++++++++++++++++++++++ wofi/.signature | 5 +++++ wofi/Pkgfile | 20 ++++++++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 wofi/.footprint create mode 100644 wofi/.signature create mode 100644 wofi/Pkgfile diff --git a/wofi/.footprint b/wofi/.footprint new file mode 100644 index 000000000..94f3b02c6 --- /dev/null +++ b/wofi/.footprint @@ -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 diff --git a/wofi/.signature b/wofi/.signature new file mode 100644 index 000000000..cf85557b9 --- /dev/null +++ b/wofi/.signature @@ -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 diff --git a/wofi/Pkgfile b/wofi/Pkgfile new file mode 100644 index 000000000..f79485e08 --- /dev/null +++ b/wofi/Pkgfile @@ -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 +}