wok view dsh/receipt @ rev 23521

updated python-paho-mqtt (1.3.1 -> 1.5.0)
author Hans-G?nter Theisgen
date Mon Apr 06 13:53:11 2020 +0100 (2020-04-06)
parents
children bfabe25c21ff
line source
1 # SliTaz package receipt.
3 PACKAGE="dsh"
4 VERSION="0.25.9"
5 CATEGORY="network"
6 SHORT_DESC="Wrapper for executing multiple remote shell (rsh/remsh/ssh) commands"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE=""
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.netfort.gr.jp/~dancer/software/dsh.html.en"
11 WGET_URL="https://www.netfort.gr.jp/~dancer/software/downloads/$TARBALL"
13 DEPENDS="libdshconfig"
14 BUILD_DEPENDS="libdshconfig-dev"
15 SUGGESTED="ssh rsh"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr \
21 --sysconfdir=/etc \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/etc $fs
33 sed -i 's|=rsh|=dbclient|' $fs/etc/dsh.conf
34 }