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