PKGBUILDs/extra/yp-tools/PKGBUILD
2009-10-09 21:23:22 -05:00

21 lines
712 B
Bash

# $Id: PKGBUILD 36965 2009-04-29 05:16:06Z eric $
# Maintainer: dorphell <dorphell@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=yp-tools
pkgver=2.10
pkgrel=2
pkgdesc="yp-tools is an implementation of the NIS client tools for Linux"
arch=(i686 x86_64)
url="http://www.linux-nis.org/nis/yp-tools/"
license=('GPL2')
depends=('ypbind-mt' 'glibc')
source=(ftp://ftp.kernel.org/pub/linux/utils/net/NIS/$pkgname-$pkgver.tar.gz)
md5sums=('d3e3df89148f0db3dabcd220c6255405')
build() {
cd $srcdir/$pkgname-$pkgver
# the domainname utilities are provided by net-tools
./configure --prefix=/usr --disable-domainname || return 1
make || return 1
make DESTDIR=$pkgdir install || return 1
}