summaryrefslogtreecommitdiff
path: root/opt/tig
diff options
context:
space:
mode:
Diffstat (limited to 'opt/tig')
-rw-r--r--opt/tig/.footprint13
-rw-r--r--opt/tig/.signature6
-rw-r--r--opt/tig/MAKEPKG33
3 files changed, 52 insertions, 0 deletions
diff --git a/opt/tig/.footprint b/opt/tig/.footprint
new file mode 100644
index 0000000..bcc6ebb
--- /dev/null
+++ b/opt/tig/.footprint
@@ -0,0 +1,13 @@
+drwxr-xr-x root/root etc/
+-rw-r--r-- root/root etc/tigrc
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/tig
+drwxr-xr-x root/root usr/share/
+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/tig.1.gz
+drwxr-xr-x root/root usr/share/man/man5/
+-rw-r--r-- root/root usr/share/man/man5/tigrc.5.gz
+drwxr-xr-x root/root usr/share/man/man7/
+-rw-r--r-- root/root usr/share/man/man7/tigmanual.7.gz
diff --git a/opt/tig/.signature b/opt/tig/.signature
new file mode 100644
index 0000000..b8d753b
--- /dev/null
+++ b/opt/tig/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mG0H72MpAeEZlDmosL5fiexcD4Taci7IMAq9HUJUYgORUyJlgcK+q7rfQUSUv5NwZ7JxumG9Zmi5n91gj6sLdAM=
+
+SHA256 (MAKEPKG) = 49151449a31d90b13d8fdda0494da98a31a696d4c63cdc9eef783b6bb04d1eac
+SHA256 (.footprint) = d515a1aa9c903166a8aa52dbc14747d06f1c59c59d1f8f4180c55602d8915e69
+SHA256 (tig-2.6.1.tar.gz) = 5adeabdcd93aa0423d618da8b878b53482bef6e0e9e1fe224acc0f18031fe91e
+SHA256 (tig#2.6.1-1.pkg.tar.gz) = 228b6268c2e80b71b150dacb3c71357c30b2795d50f5e7e47ac9496651c641e8
diff --git a/opt/tig/MAKEPKG b/opt/tig/MAKEPKG
new file mode 100644
index 0000000..c1eec95
--- /dev/null
+++ b/opt/tig/MAKEPKG
@@ -0,0 +1,33 @@
+#!/bin/mkpkg
+# description: Text-mode interface for git
+# url: https://github.com/jonas/tig
+
+name=tig
+version=2.6.1
+release=1
+source=(https://github.com/jonas/tig/releases/download/tig-$version/tig-$version.tar.gz)
+
+sha256sums=(
+ "5adeabdcd93aa0423d618da8b878b53482bef6e0e9e1fe224acc0f18031fe91e"
+)
+
+build() {
+ cd $name-$version
+
+ ./configure \
+ --prefix=/usr \
+ -sysconfdir=/etc \
+ --mandir=/usr/share/man \
+ --with-ncurses \
+ --with-readline
+
+ make
+ make DESTDIR=$PKG install install-doc-man
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh