wok rev 22685

Add dsh & pssh
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jan 19 16:16:58 2020 +0100 (2020-01-19)
parents 3760e697c98f
children 8a238554f731
files dsh/receipt libdshconfig-dev/receipt libdshconfig/receipt pssh/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dsh/receipt	Sun Jan 19 16:16:58 2020 +0100
     1.3 @@ -0,0 +1,34 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="dsh"
     1.7 +VERSION="0.25.9"
     1.8 +CATEGORY="network"
     1.9 +SHORT_DESC="Wrapper for executing multiple remote shell (rsh/remsh/ssh) commands"
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE=""
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="http://www.netfort.gr.jp/~dancer/software/dsh.html.en"
    1.14 +WGET_URL="https://www.netfort.gr.jp/~dancer/software/downloads/$TARBALL"
    1.15 +
    1.16 +DEPENDS="libdshconfig"
    1.17 +BUILD_DEPENDS="libdshconfig-dev"
    1.18 +SUGGESTED="ssh rsh"
    1.19 +
    1.20 +# Rules to configure and make the package.
    1.21 +compile_rules()
    1.22 +{
    1.23 +	./configure --prefix=/usr \
    1.24 +		--sysconfdir=/etc \
    1.25 +		$CONFIGURE_ARGS &&
    1.26 +	make &&
    1.27 +	make DESTDIR=$DESTDIR install
    1.28 +}
    1.29 +
    1.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 +genpkg_rules()
    1.32 +{
    1.33 +	mkdir -p $fs/usr
    1.34 +	cp -a $install/usr/bin $fs/usr
    1.35 +	cp -a $install/etc $fs
    1.36 +	sed -i 's|=rsh|=dbclient|' $fs/etc/dsh.conf
    1.37 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libdshconfig-dev/receipt	Sun Jan 19 16:16:58 2020 +0100
     2.3 @@ -0,0 +1,20 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="libdshconfig-dev"
     2.7 +VERSION="0.20.9"
     2.8 +CATEGORY="development"
     2.9 +SHORT_DESC="Config file parser used by dsh, development files"
    2.10 +MAINTAINER="pascal.bellard@slitaz.org"
    2.11 +LICENSE="GPL2"
    2.12 +WEB_SITE="http://www.netfort.gr.jp/~dancer/software/dsh.html.en"
    2.13 +WANTED="libdshconfig"
    2.14 +
    2.15 +DEPENDS="libdshconfig"
    2.16 +
    2.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.18 +genpkg_rules()
    2.19 +{
    2.20 +	mkdir -p $fs/usr/lib
    2.21 +	cp -a $install/usr/lib/*a $fs/usr/lib
    2.22 +	cp -a $install/usr/include $fs/usr
    2.23 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/libdshconfig/receipt	Sun Jan 19 16:16:58 2020 +0100
     3.3 @@ -0,0 +1,27 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="libdshconfig"
     3.7 +VERSION="0.20.9"
     3.8 +CATEGORY="network"
     3.9 +SHORT_DESC="Config file parser used by dsh"
    3.10 +MAINTAINER="pascal.bellard@slitaz.org"
    3.11 +LICENSE="GPL2"
    3.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.13 +WEB_SITE="http://www.netfort.gr.jp/~dancer/software/dsh.html.en"
    3.14 +WGET_URL="https://www.netfort.gr.jp/~dancer/software/downloads/$TARBALL"
    3.15 +
    3.16 +# Rules to configure and make the package.
    3.17 +compile_rules()
    3.18 +{
    3.19 +	./configure --prefix=/usr \
    3.20 +		$CONFIGURE_ARGS &&
    3.21 +	make &&
    3.22 +	make DESTDIR=$DESTDIR install
    3.23 +}
    3.24 +
    3.25 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.26 +genpkg_rules()
    3.27 +{
    3.28 +	mkdir -p $fs/usr/lib
    3.29 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    3.30 +}
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/pssh/receipt	Sun Jan 19 16:16:58 2020 +0100
     4.3 @@ -0,0 +1,28 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="pssh"
     4.7 +VERSION="1.4.3"
     4.8 +CATEGORY="network"
     4.9 +SHORT_DESC="Parallel versions of the openssh tools"
    4.10 +MAINTAINER="pascal.bellard@slitaz.org"
    4.11 +LICENSE="BSD"
    4.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    4.13 +WEB_SITE="http://www.theether.org/pssh/"
    4.14 +WGET_URL="$WEB_SITE/$TARBALL"
    4.15 +TAGS="ssh"
    4.16 +
    4.17 +DEPENDS="python"
    4.18 +BUILD_DEPENDS="python-setuptools"
    4.19 +
    4.20 +# Rules to configure and make the package.
    4.21 +compile_rules()
    4.22 +{
    4.23 +	python setup.py build &&
    4.24 +	python setup.py install --root=$DESTDIR
    4.25 +}
    4.26 +
    4.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.28 +genpkg_rules()
    4.29 +{
    4.30 +	cp -a $install/usr $fs/
    4.31 +}