summaryrefslogtreecommitdiff
path: root/opt/fnott
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/fnott
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/fnott')
-rw-r--r--opt/fnott/.footprint32
-rw-r--r--opt/fnott/.signature6
-rw-r--r--opt/fnott/MAKEPKG37
3 files changed, 75 insertions, 0 deletions
diff --git a/opt/fnott/.footprint b/opt/fnott/.footprint
new file mode 100644
index 0000000..f1270eb
--- /dev/null
+++ b/opt/fnott/.footprint
@@ -0,0 +1,32 @@
+drwxr-xr-x root/root etc/
+drwxr-xr-x root/root etc/xdg/
+drwxr-xr-x root/root etc/xdg/fnott/
+-rw-r--r-- root/root etc/xdg/fnott/fnott.ini
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/fnott
+-rwxr-xr-x root/root usr/bin/fnottctl
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/applications/
+-rw-r--r-- root/root usr/share/applications/fnott.desktop
+drwxr-xr-x root/root usr/share/dbus-1/
+drwxr-xr-x root/root usr/share/dbus-1/services/
+-rw-r--r-- root/root usr/share/dbus-1/services/fnott.service
+drwxr-xr-x root/root usr/share/doc/
+drwxr-xr-x root/root usr/share/doc/fnott/
+-rw-r--r-- root/root usr/share/doc/fnott/LICENSE
+-rw-r--r-- root/root usr/share/doc/fnott/README.md
+drwxr-xr-x root/root usr/share/fish/
+drwxr-xr-x root/root usr/share/fish/vendor_completions.d/
+-rw-r--r-- root/root usr/share/fish/vendor_completions.d/fnott.fish
+-rw-r--r-- root/root usr/share/fish/vendor_completions.d/fnottctl.fish
+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/fnott.1.gz
+-rw-r--r-- root/root usr/share/man/man1/fnottctl.1.gz
+drwxr-xr-x root/root usr/share/man/man5/
+-rw-r--r-- root/root usr/share/man/man5/fnott.ini.5.gz
+drwxr-xr-x root/root usr/share/zsh/
+drwxr-xr-x root/root usr/share/zsh/site-functions/
+-rw-r--r-- root/root usr/share/zsh/site-functions/_fnott
+-rw-r--r-- root/root usr/share/zsh/site-functions/_fnottctl
diff --git a/opt/fnott/.signature b/opt/fnott/.signature
new file mode 100644
index 0000000..83f935a
--- /dev/null
+++ b/opt/fnott/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mGZVchX+xrvlrdJp95yIdEuCL9DuqqBpiTMgVT6M8q3dZD0rTyCUvhAeBp/2DPmXNpu2rP26pqGbcfiP1dQ4Qgg=
+
+SHA256 (MAKEPKG) = 6972c5585de5eb2869bf01451c497b8f56ab3aec731724aeac0aa32c9a9bfa54
+SHA256 (.footprint) = 275babe81bcd2aaf57a8a20b534ecb00c28daf7450dcad5a0f4945da3ec586d5
+SHA256 (fnott-1.8.0.tar.gz) = 896bf281431067adf539a8e563db7ef0409877f53131af4fd6656ceda11d24db
+SHA256 (fnott#1.8.0-1.pkg.tar.gz) = 675eecb1353297c0077af37ccac37fb41cccea53ccd724bdfc9b8153cca0e415
diff --git a/opt/fnott/MAKEPKG b/opt/fnott/MAKEPKG
new file mode 100644
index 0000000..9e20ba2
--- /dev/null
+++ b/opt/fnott/MAKEPKG
@@ -0,0 +1,37 @@
+#!/bin/mkpkg
+# description: Keyboard driven and lightweight Wayland notification daemon
+# url: https://codeberg.org/dnkl/fnott
+
+name=fnott
+version=1.8.0
+release=1
+depends=(libnotify fcft fontconfig freetype pixman libpng wayland dbus)
+makedeps=(meson ninja scdoc wayland-protocols tllist)
+source=(https://codeberg.org/dnkl/fnott/archive/$version.tar.gz)
+renames=($name-$version.tar.gz)
+sha256sums=(
+ "896bf281431067adf539a8e563db7ef0409877f53131af4fd6656ceda11d24db"
+)
+
+build() {
+ cd $name
+
+ meson setup build \
+ --prefix=/usr \
+ --buildtype=plain \
+ --wrap-mode=nodownload \
+ -D b_lto=true \
+ -D b_pie=true \
+ -D docs=enabled \
+ -D werror=false
+
+ meson compile -C build
+ DESTDIR=$PKG meson install -C build
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh