diff options
author | root <root@rshg047.dnsready.net> | 2011-06-03 22:47:36 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-06-03 22:47:36 +0000 |
commit | 805d577f46f94e747f712b7c942f595cd8f7e170 (patch) | |
tree | 9a708cc4fdc41336d9747a861d194b6c98caa5e4 /testing/yp-tools | |
parent | 2d8c4c44185a682290ccde4d23132ae3acf01678 (diff) |
Fri Jun 3 22:47:36 UTC 2011
Diffstat (limited to 'testing/yp-tools')
-rw-r--r-- | testing/yp-tools/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/yp-tools/PKGBUILD b/testing/yp-tools/PKGBUILD new file mode 100644 index 000000000..8cf4b6960 --- /dev/null +++ b/testing/yp-tools/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 126193 2011-06-02 14:34:36Z bisson $ +# Maintainer: Gaetan Bisson <bisson@archlinux.org> +# Contributor: dorphell <dorphell@archlinux.org> +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> + +pkgname=yp-tools +pkgver=2.12 +pkgrel=2 +pkgdesc='Linux NIS Tools' +arch=('i686' 'x86_64') +url='http://www.linux-nis.org/nis/yp-tools/' +license=('GPL2') +depends=('ypbind-mt') +source=("ftp://ftp.kernel.org/pub/linux/utils/net/NIS/$pkgname-$pkgver.tar.gz") +sha1sums=('10b0ef5d4c5723e0716d7a1431a900c0ba6ef703') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} |