summaryrefslogtreecommitdiff
path: root/opt/whois/MAKEPKG
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/whois/MAKEPKG
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/whois/MAKEPKG')
-rw-r--r--opt/whois/MAKEPKG30
1 files changed, 30 insertions, 0 deletions
diff --git a/opt/whois/MAKEPKG b/opt/whois/MAKEPKG
new file mode 100644
index 0000000..f408f59
--- /dev/null
+++ b/opt/whois/MAKEPKG
@@ -0,0 +1,30 @@
+#!/bin/mkpkg
+# description: Internet domain name and network number directory service
+# url: https://github.com/rfc1036/whois
+
+name=whois
+version=5.6.6
+release=1
+makedeps=(gettext)
+source=(https://github.com/rfc1036/whois/archive/refs/tags/v$version.tar.gz)
+renames=($name-$version.tar.gz)
+
+sha256sums=(
+ "43d3b3cc64c75e8bd10aee6feff3906e9488ed335076d206e70f3b25bf644969"
+)
+
+build() {
+ cd $name-$version
+
+ make CC=clang prefix=/usr
+ make prefix=/usr DESTDIR=$PKG install-whois install-mkpasswd install-pos
+
+ rm -rf $PKG/usr/share/locale
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh