desktop/whois/PKGBUILD
2015-06-22 15:42:18 +00:00

24 lines
616 B
Bash

pkgname=whois
pkgver=5.2.9
pkgrel=1
pkgdesc="The whois client by Marco d'Itri"
arch=('x86_64')
url="http://www.linux.it/~md/software/"
license=('GPL')
depends=('libidn')
makedepends=('perl')
source=("http://ftp.debian.org/debian/pool/main/w/$pkgname/whois_$pkgver.tar.xz")
sha512sums=('083c77c133dff675a346c203cbd3dd2327ef4b980c474b0deb66d21d9687739b4ccb12a7d1666eb091654902456e64bb416349073d13f16773c56d867f6a2f04')
build() {
cd "$srcdir/$pkgname-$pkgver"
make prefix=/usr CFLAGS="$CFLAGS" HAVE_LIBIDN=1
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make prefix=/usr BASEDIR="$pkgdir" install-whois
}