summaryrefslogtreecommitdiff
path: root/opt/fnott/MAKEPKG
diff options
context:
space:
mode:
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