blob: f1e7d48d754019331283427c3d2c198a03873c5a (
plain)
1 # Description: A modern whois client
2 # URL: https://github.com/rfc1036/whois
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4
5 name=whois
6 version=5.5.15
7 release=1
8 source=(https://ftp.debian.org/debian/pool/main/w/$name/$name\_$version.tar.xz)
9
10 build() {
11 cd $name
12 sed -i "/^CFLAGS/s/=.*$/=$CFLAGS/" Makefile
13 make CONFIG_FILE='/etc/whois.conf' whois
14 install -D -m 0755 whois $PKG/usr/bin/whois
15 install -D -m 0644 whois.1 $PKG/usr/share/man/man1/whois.1
16 install -D -m 0644 whois.conf.5 $PKG/usr/share/man/man5/whois.conf.5
17 install -D -m 0644 whois.conf $PKG/etc/whois.conf
18 }
|