mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
631 B
Bash
21 lines
631 B
Bash
# $Id: PKGBUILD 52915 2009-09-23 09:07:39Z giovanni $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
pkgname=whois
|
|
pkgver=4.7.36
|
|
pkgrel=1
|
|
pkgdesc="The whois client by Marco d'Itri"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.linux.it/~md/software/"
|
|
license=('GPL')
|
|
depends=('libidn')
|
|
makedepends=('perl')
|
|
source=(http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.gz)
|
|
md5sums=('27e871eb17f48b786930153039f4edbc')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make prefix=/usr HAVE_LIBIDN=1 || return 1
|
|
make prefix=/usr BASEDIR=${pkgdir} install-whois
|
|
}
|