blob: 4227afb2fdfb3af866aab06412c9b00a9487c083 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# maintainer: dialuplama <dialuplama@teknik.io>
# co-maintainer: muhas <muhas@mail.ru>
pkgname=dsh
pkgver=0.25.10
pkgrel=1
pkgdesc="Distributed shell (or dancer’s shell) executes command remotely on several different machines at the same time."
arch=('any')
url="http://www.netfort.gr.jp/~dancer/software/dsh.html"
license=('GPL2')
depends=('libdshconfig')
source=("https://www.netfort.gr.jp/~dancer/software/downloads/$pkgname-$pkgver.tar.gz")
md5sums=('5269b26348cc1cc6252317c6dca5d219')
build() {
cd "$pkgname-$pkgver"
./configure \
--prefix=/usr \
--sysconfdir='/etc/$pkgname'
make
}
check() {
cd "$pkgname-$pkgver"
make -k check
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
|