blob: 6a231571835b731d41a18d5a145612494a26cc35 (
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.5.6
8 release=1
9 source=(http://ftp.debian.org/debian/pool/main/w/$name/$name\_$version.tar.xz)
10
11 build() {
12 cd $name
13 sed -i "/^CFLAGS/s/=.*$/=$CFLAGS/" Makefile
14 make CONFIG_FILE='/etc/whois.conf' whois
15 install -D -m 0755 whois $PKG/usr/bin/whois
16 install -D -m 0644 whois.1 $PKG/usr/share/man/man1/whois.1
17 install -D -m 0644 whois.conf.5 $PKG/usr/share/man/man5/whois.conf.5
18 install -D -m 0644 whois.conf $PKG/etc/whois.conf
19 }
|