blob: cd1cf9e04ecb6422cc310194d7bfea4ac25bfc31 (
plain)
1 # Description: A modern whois client
2 # URL: http://www.linux.it/~md/software/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Packager: Olle Gustafsson, ogg at linux dot se
5
6 name=whois
7 version=5.0.18
8 release=1
9 source=(http://ftp.debian.org/debian/pool/main/w/$name/$name\_$version.tar.xz)
10
11 build() {
12 cd $name-$version
13 sed -i "/^CFLAGS/s/=.*$/=$CFLAGS/" Makefile
14 make CONFIG_FILE='/etc/whois.conf' whois
15 install -D -m 755 whois $PKG/usr/bin/whois
16 install -D -m 644 whois.1 $PKG/usr/man/man1/whois.1
17 install -D -m 644 whois.conf $PKG/etc/whois.conf
18 }
|