updated on Sat Jan 14 12:12:45 UTC 2012
[aur-mirror.git] / pdsh-genders / PKGBUILD
blobb06671585eb934a1725e5f168c399332c7a6523d
1 # Maintainer: sh0 <mee@sh0.org>
3 pkgname=pdsh-genders
4 pkgver=2.22
5 pkgrel=1
6 pkgdesc='A high-performance, parallel remote shell utility'
7 url='https://computing.llnl.gov/linux/pdsh.html'
8 arch=('i686' 'x86_64')
9 license=('GPL')
10 depends=('glibc' 'openssh' 'readline' 'genders')
11 optdepends=('perl: required by the dshbak utility')
12 options=('libtool')
13 source=("http://downloads.sourceforge.net/pdsh/pdsh-${pkgver}.tar.bz2")
14 conflicts=('pdsh')
15 md5sums=('151b7a67079e88da0309a5c60432f4a9')
17 build() {
18   cd "${srcdir}/pdsh-${pkgver}"
19   ./configure --prefix=/usr --mandir=/usr/share/man \
20               --without-rsh \
21               --with-ssh \
22               --without-machines \
23               --without-dshgroups \
24                           --without-netgroup \
25                           --with-genders \
26               --with-readline || return 1
27   make || return 1
30 package() {
31   cd "${srcdir}/pdsh-${pkgver}"
32   make DESTDIR="${pkgdir}/" install || return 1
33   rm -fr "${pkgdir}/usr/sbin"
36 # vim:set ts=2 sw=2 et: