wok-6.x annotate autossh/receipt @ rev 16854
netsurf:some make opts
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Sun Jul 13 04:58:40 2014 +0300 (2014-07-13) |
parents | 2a5cc8208d36 |
children | f44ef80ff9e2 |
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@13388 | 12 |
pascal@13388 | 13 DEPENDS="openssh" |
pascal@15613 | 14 BUILD_DEPENDS="openssh" |
pascal@13388 | 15 |
pascal@13388 | 16 # Rules to configure and make the package. |
pascal@13388 | 17 compile_rules() |
pascal@13388 | 18 { |
pascal@13388 | 19 cd $src |
pascal@13388 | 20 ./configure --prefix=/usr \ |
pascal@13388 | 21 $CONFIGURE_ARGS && |
pascal@13388 | 22 make |
pascal@13388 | 23 } |
pascal@13388 | 24 |
pascal@13388 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@13388 | 26 genpkg_rules() |
pascal@13388 | 27 { |
pascal@13388 | 28 mkdir -p $fs/usr/bin |
pascal@13389 | 29 cp -a $src/autossh $fs/usr/bin |
pascal@13388 | 30 } |