wok-next annotate autossh/receipt @ rev 17215
Add mdp
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Sat Oct 11 10:50:31 2014 +0100 (2014-10-11) |
parents | 12d5d6943718 |
children | 33e5fb8a4dcb |
rev | line source |
---|---|
pascal@13388 | 1 # SliTaz package receipt. |
pascal@13388 | 2 |
pascal@13388 | 3 PACKAGE="autossh" |
pascal@13388 | 4 VERSION="1.4c" |
pascal@13388 | 5 CATEGORY="network" |
pascal@13388 | 6 SHORT_DESC="Automatically restart SSH sessions and tunnels." |
pascal@13388 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15379 | 8 LICENSE="CC-SA" |
pascal@13388 | 9 WEB_SITE="http://www.harding.motd.ca/autossh/" |
pascal@13388 | 10 TARBALL="$PACKAGE-$VERSION.tgz" |
pascal@13388 | 11 WGET_URL="${WEB_SITE}$TARBALL" |
pascal@17141 | 12 TAGS="ssh" |
pascal@13388 | 13 |
pascal@13388 | 14 DEPENDS="openssh" |
pascal@15613 | 15 BUILD_DEPENDS="openssh" |
pascal@13388 | 16 |
pascal@13388 | 17 # Rules to configure and make the package. |
pascal@13388 | 18 compile_rules() |
pascal@13388 | 19 { |
pascal@13388 | 20 cd $src |
pascal@13388 | 21 ./configure --prefix=/usr \ |
pascal@13388 | 22 $CONFIGURE_ARGS && |
pascal@13388 | 23 make |
pascal@13388 | 24 } |
pascal@13388 | 25 |
pascal@13388 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@13388 | 27 genpkg_rules() |
pascal@13388 | 28 { |
pascal@13388 | 29 mkdir -p $fs/usr/bin |
pascal@13389 | 30 cp -a $src/autossh $fs/usr/bin |
pascal@13388 | 31 } |