wok annotate autossh/receipt @ rev 22541

Add gnubik
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jan 03 16:37:44 2020 +0100 (2020-01-03)
parents a78610b2eb47
children 9af0e03b8ad0
rev   line source
pascal@13388 1 # SliTaz package receipt.
pascal@13388 2
pascal@13388 3 PACKAGE="autossh"
Hans-G?nter@20728 4 VERSION="1.4g"
pascal@13388 5 CATEGORY="network"
Hans-G?nter@20728 6 TAGS="ssh"
pascal@13388 7 SHORT_DESC="Automatically restart SSH sessions and tunnels."
pascal@13388 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15379 9 LICENSE="CC-SA"
pascal@20669 10 WEB_SITE="https://www.harding.motd.ca/autossh/"
Hans-G?nter@20728 11
pascal@13388 12 TARBALL="$PACKAGE-$VERSION.tgz"
pascal@13388 13 WGET_URL="${WEB_SITE}$TARBALL"
pascal@13388 14
pascal@13388 15 DEPENDS="openssh"
pascal@15613 16 BUILD_DEPENDS="openssh"
pascal@13388 17
pascal@13388 18 # Rules to configure and make the package.
pascal@13388 19 compile_rules()
pascal@13388 20 {
al@19275 21 ./configure \
al@19275 22 --prefix=/usr \
pascal@13388 23 $CONFIGURE_ARGS &&
pascal@13388 24 make
al@19269 25
al@19275 26 cook_pick_manpages $src/autossh.1
pascal@13388 27 }
pascal@13388 28
pascal@13388 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13388 30 genpkg_rules()
pascal@13388 31 {
pascal@13388 32 mkdir -p $fs/usr/bin
pascal@13389 33 cp -a $src/autossh $fs/usr/bin
pascal@13388 34 }