diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-03-21 03:22:19 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-03-21 03:22:19 +0000 |
commit | d0f33415f254cb2fee06fd89f9cfed4535322f37 (patch) | |
tree | 66c13d72eac4f0110772b4675231c891334137bc /pcr/pdsh | |
parent | 7e108c74958ec076a3734822f61f145d0d69547f (diff) |
Fri Mar 21 03:19:28 UTC 2014
Diffstat (limited to 'pcr/pdsh')
-rw-r--r-- | pcr/pdsh/PKGBUILD | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/pcr/pdsh/PKGBUILD b/pcr/pdsh/PKGBUILD deleted file mode 100644 index 0f4fc2461..000000000 --- a/pcr/pdsh/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# Contributor: drrossum <d.r.vanrossum at gmx.de> -# Contributor: sh0 <mee@sh0.org> -# Maintainer : AurÃelien Desbrieres <aurelien@xload.io> - -pkgname=pdsh -pkgver=2.29 -pkgrel=2 -pkgdesc='Parallel Distributed Shell' -url='http://code.google.com/p/pdsh/' -arch=('i686' 'x86_64') -license=('GPL') -depends=('glibc' 'openssh' 'readline') -optdepends=('perl: required by the dshbak utility') -options=('libtool') -source=("http://pdsh.googlecode.com/files/$pkgname-$pkgver.tar.bz2") - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr --mandir=/usr/share/man \ - --without-rsh \ - --with-ssh \ - --with-dshgroups \ - --with-readline || return 1 - make || return 1 -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}/" install || return 1 - rmdir "${pkgdir}/usr/sbin" -} - -# vim:set ts=2 sw=2 et: |