PKGBUILDs/extra/yp-tools/PKGBUILD
2009-10-10 23:11:32 -05:00

21 lines
657 B
Bash

# 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=('arm')
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
}