wok annotate zssh/receipt @ rev 17543

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