wok-next annotate zssh/receipt @ rev 21030
Combine hackdorte-artwork
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Nov 03 15:01:44 2018 +0200 (2018-11-03) |
parents | 466bca9334ef |
children |
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" |
al@21020 | 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" |
al@21020 | 9 WEB_SITE="http://zssh.sourceforge.net/" |
al@21020 | 10 |
pascal@17131 | 11 TARBALL="$PACKAGE-$VERSION.tgz" |
pascal@17131 | 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@17131 | 13 |
pascal@17131 | 14 BUILD_DEPENDS="readline-dev ncurses-dev" |
pascal@17131 | 15 |
al@21020 | 16 compile_rules() { |
al@21020 | 17 ./configure \ |
al@21020 | 18 --prefix=/usr \ |
al@21020 | 19 $CONFIGURE_ARGS && |
al@21020 | 20 make || return 1 |
al@21020 | 21 |
al@21020 | 22 cook_pick_manpages *.1 |
al@21020 | 23 cook_pick_docs [A-Z][A-Z]* |
pascal@17131 | 24 } |
pascal@17131 | 25 |
al@21020 | 26 genpkg_rules() { |
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 |
al@21020 | 30 DEPENDS="readline lrzsz" |
al@21020 | 31 TAGS="ssh" |
pascal@17131 | 32 } |