diff options
author | root <root@rshg054.dnsready.net> | 2012-03-13 00:01:30 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-03-13 00:01:30 +0000 |
commit | 217a7715291ceb935900b71bde082023bc441290 (patch) | |
tree | 6cbfcf7d11f0bd1e412f542080ec995fc26daffd /community/clusterssh | |
parent | 7e61bbcf6b3c8ffe6c076268044d83b446fceeab (diff) |
Tue Mar 13 00:01:30 UTC 2012
Diffstat (limited to 'community/clusterssh')
-rw-r--r-- | community/clusterssh/PKGBUILD | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/community/clusterssh/PKGBUILD b/community/clusterssh/PKGBUILD index 6c2445121..29a9eadc7 100644 --- a/community/clusterssh/PKGBUILD +++ b/community/clusterssh/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 6917 2009-12-26 21:02:21Z jlichtblau $ +# $Id: PKGBUILD 67467 2012-03-11 21:44:43Z lcarlier $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Macfly <mmacfly@gmail.com> # Contributor: Duncan Ferguson <duncan_ferguson@users.sourceforge.net> pkgname=clusterssh pkgver=3.28 -pkgrel=2 +pkgrel=3 pkgdesc="Cluster SSH opens terminal windows with connections to specified hosts and an administration console." arch=('i686' 'x86_64') url="http://clusterssh.sourceforge.net/" @@ -18,6 +18,11 @@ build() { cd ${srcdir}/$pkgname-$pkgver ./configure --prefix=/usr - make || return 1 + make +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + make DESTDIR=${pkgdir} install } |