diff options
Diffstat (limited to 'opt/whois/MAKEPKG')
| -rw-r--r-- | opt/whois/MAKEPKG | 30 |
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 |
