mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
712 B
Bash
22 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
|
||
|
}
|