summaryrefslogtreecommitdiff
path: root/opt/dialog
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/dialog
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/dialog')
-rw-r--r--opt/dialog/.footprint9
-rw-r--r--opt/dialog/.signature6
-rw-r--r--opt/dialog/MAKEPKG31
3 files changed, 46 insertions, 0 deletions
diff --git a/opt/dialog/.footprint b/opt/dialog/.footprint
new file mode 100644
index 0000000..51162ac
--- /dev/null
+++ b/opt/dialog/.footprint
@@ -0,0 +1,9 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/dialog
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libdialog.a
+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/dialog.1.gz
diff --git a/opt/dialog/.signature b/opt/dialog/.signature
new file mode 100644
index 0000000..a8e59ff
--- /dev/null
+++ b/opt/dialog/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mKh7nXvNSkdCwDfCzokco6j7QAG/hIU9avczAZBCU2sFG5joWqF1EjCLXXlJDxUsmSbEtEIuO466NeCh/bf4RQw=
+
+SHA256 (MAKEPKG) = e288bb534e3ed8ec233b7b0e046f1b672d861824eabb0877172091999da9bde5
+SHA256 (.footprint) = f0120269ef1cd244a1f1e263249bb22e28cad98b4dcae44048d538b9fa3d71e8
+SHA256 (dialog-1.3-20251001.tgz) = bee47347a983312facc4dbcccd7fcc86608d684e1f119d9049c4692213db96c3
+SHA256 (dialog#1.3-20251001-1.pkg.tar.gz) = c44d6b59d7fc2e3350791e503144297afd0b1516c5f18ef27fd96d0d3baee838
diff --git a/opt/dialog/MAKEPKG b/opt/dialog/MAKEPKG
new file mode 100644
index 0000000..6a6c659
--- /dev/null
+++ b/opt/dialog/MAKEPKG
@@ -0,0 +1,31 @@
+#!/bin/mkpkg
+# description: A tool to display dialog boxes from shell scripts
+# url: https://invisible-island.net/dialog/
+
+name=dialog
+version=1.3-20251001
+release=1
+depends=(ncurses)
+source=(https://invisible-mirror.net/archives/$name/$name-$version.tgz)
+
+sha256sums=(
+ "bee47347a983312facc4dbcccd7fcc86608d684e1f119d9049c4692213db96c3"
+)
+
+build() {
+ cd $name-$version
+
+ ./configure \
+ --prefix=/usr \
+ --with-ncursesw
+
+ make
+ make DESTDIR=$PKG install
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh