summaryrefslogtreecommitdiff
path: root/opt/reptyr/MAKEPKG
diff options
context:
space:
mode:
Diffstat (limited to 'opt/reptyr/MAKEPKG')
-rw-r--r--opt/reptyr/MAKEPKG28
1 files changed, 28 insertions, 0 deletions
diff --git a/opt/reptyr/MAKEPKG b/opt/reptyr/MAKEPKG
new file mode 100644
index 0000000..35fab3b
--- /dev/null
+++ b/opt/reptyr/MAKEPKG
@@ -0,0 +1,28 @@
+#!/bin/mkpkg
+# description: Attach a running process to a new terminal
+# url: https://github.com/nelhage/reptyr
+
+name=reptyr
+version=0.10.0
+release=1
+source=(https://github.com/nelhage/reptyr/archive/refs/tags/reptyr-$version.tar.gz)
+
+sha256sums=(
+ "c6ffbc34a511ac00d072219bda30699e51f2f4eb483cbae9e32e981d49e8b380"
+)
+
+build() {
+ cd $SRC/reptyr-reptyr-$version
+
+ make PREFIX=/usr
+ make PREFIX=/usr DESTDIR=$PKG install
+
+ rm -rf $PKG/usr/share/man/fr/
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh