25 lines
710 B
Bash
25 lines
710 B
Bash
# Template file for 'whois'
|
|
pkgname=whois
|
|
version=5.2.13
|
|
revision=1
|
|
hostmakedepends="perl"
|
|
makedepends="libidn-devel"
|
|
short_desc="An improved whois client"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://www.linux.it/~md/software"
|
|
license="GPL-2"
|
|
distfiles="${DEBIAN_SITE}/main/w/${pkgname}/${pkgname}_${version}.tar.xz"
|
|
checksum=cc83a9b93c47e0334aa812d7d731972cf09aceb59235d452525a77cd6f5f6b64
|
|
|
|
alternatives="
|
|
whois:whois:/usr/bin/gwhois
|
|
whois:whois.1:/usr/share/man/man1/gwhois.1"
|
|
|
|
do_build() {
|
|
make CC=$CC prefix=/usr HAVE_LIBIDN=1
|
|
}
|
|
do_install() {
|
|
make prefix=/usr BASEDIR=${DESTDIR} install-whois
|
|
mv ${DESTDIR}/usr/bin/{whois,gwhois}
|
|
mv ${DESTDIR}/usr/share/man/man1/{whois,gwhois}.1
|
|
}
|