summaryrefslogtreecommitdiff
path: root/opt/fnott/MAKEPKG
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/MAKEPKG
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/fnott/MAKEPKG')
-rw-r--r--opt/fnott/MAKEPKG37
1 files changed, 37 insertions, 0 deletions
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