summaryrefslogtreecommitdiff
path: root/opt/reptyr
diff options
context:
space:
mode:
Diffstat (limited to 'opt/reptyr')
-rw-r--r--opt/reptyr/.footprint10
-rw-r--r--opt/reptyr/.signature6
-rw-r--r--opt/reptyr/MAKEPKG28
3 files changed, 44 insertions, 0 deletions
diff --git a/opt/reptyr/.footprint b/opt/reptyr/.footprint
new file mode 100644
index 0000000..2b1954d
--- /dev/null
+++ b/opt/reptyr/.footprint
@@ -0,0 +1,10 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/reptyr
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/bash-completion/
+drwxr-xr-x root/root usr/share/bash-completion/completions/
+-rw-r--r-- root/root usr/share/bash-completion/completions/reptyr
+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/reptyr.1.gz
diff --git a/opt/reptyr/.signature b/opt/reptyr/.signature
new file mode 100644
index 0000000..42d200c
--- /dev/null
+++ b/opt/reptyr/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mDOCK6mrwL+jTe2i9dBM+YttNA5aVaSIKW9BwdRJmz0rfaOIq7AakCd+2qzbZ9YEEZiyLUoy04wosPHeRGVFdwg=
+
+SHA256 (MAKEPKG) = 11cd6b86b01a6035a4c771607221f36605b797e404c46789a696aa927587540c
+SHA256 (.footprint) = 2686e43d3d573458983515762b4b6421466e31b37e65fbe2393d0e7367a81ebf
+SHA256 (reptyr-0.10.0.tar.gz) = c6ffbc34a511ac00d072219bda30699e51f2f4eb483cbae9e32e981d49e8b380
+SHA256 (reptyr#0.10.0-1.pkg.tar.gz) = 6a89f7ae2fc2e3987ec8d0df90f3ddfd007a217a81f0e5cb42575a5b702adadb
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