wok view autossh/receipt @ rev 16981

exempi: Fix wget url
author Yuri Pourre <yuripourre@gmail.com>
date Thu Aug 07 01:10:01 2014 -0300 (2014-08-07)
parents 2a5cc8208d36
children f44ef80ff9e2
line source
1 # SliTaz package receipt.
3 PACKAGE="autossh"
4 VERSION="1.4c"
5 CATEGORY="network"
6 SHORT_DESC="Automatically restart SSH sessions and tunnels."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="CC-SA"
9 WEB_SITE="http://www.harding.motd.ca/autossh/"
10 TARBALL="$PACKAGE-$VERSION.tgz"
11 WGET_URL="${WEB_SITE}$TARBALL"
13 DEPENDS="openssh"
14 BUILD_DEPENDS="openssh"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin
29 cp -a $src/autossh $fs/usr/bin
30 }