summaryrefslogtreecommitdiff
path: root/opt/whois/MAKEPKG
blob: f408f59443f6b4f728356a5a872b62f3120a5319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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