wok view zssh/receipt @ rev 17131

Add zssh, lrzsz
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 09 15:53:02 2014 +0200 (2014-09-09)
parents
children f44ef80ff9e2
line source
1 # SliTaz package receipt.
3 PACKAGE="zssh"
4 VERSION="1.5c"
5 CATEGORY="network"
6 SHORT_DESC="Transfer files to a remote machine while using ssh"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tgz"
10 WEB_SITE="http://zssh.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="readline lrzsz"
14 BUILD_DEPENDS="readline-dev ncurses-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr $CONFIGURE_ARGS &&
20 make
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp -a $src/zssh $fs/usr/bin
28 ln $fs/usr/bin/zssh $fs/usr/bin/ztelnet
29 }