summaryrefslogtreecommitdiff
path: root/opt/fzy/MAKEPKG
diff options
context:
space:
mode:
Diffstat (limited to 'opt/fzy/MAKEPKG')
-rw-r--r--opt/fzy/MAKEPKG26
1 files changed, 26 insertions, 0 deletions
diff --git a/opt/fzy/MAKEPKG b/opt/fzy/MAKEPKG
new file mode 100644
index 0000000..f778d5a
--- /dev/null
+++ b/opt/fzy/MAKEPKG
@@ -0,0 +1,26 @@
+#!/bin/mkpkg
+# description: A fast, simple fuzzy text selector
+# url: https://github.com/jhawthorn/fzy
+
+name=fzy
+version=1.1
+release=1
+source=(https://github.com/jhawthorn/fzy/archive/refs/tags/v$version.tar.gz)
+
+sha256sums=(
+ "93d300d9c6c7063b2c6bda4e08a9704a029ec33f609718cd95443d1a890aff4e"
+)
+
+build() {
+ cd $name-$version
+
+ make PREFIX=/usr
+ make PREFIX=/usr DESTDIR=$PKG install
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh