wok view autossh/receipt @ rev 13941

linux64: quick fix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jan 27 09:35:37 2013 +0100 (2013-01-27)
parents 199632c45ba9
children 2a5cc8208d36
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 WEB_SITE="http://www.harding.motd.ca/autossh/"
9 TARBALL="$PACKAGE-$VERSION.tgz"
10 WGET_URL="${WEB_SITE}$TARBALL"
12 DEPENDS="openssh"
13 BUILD_DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin
28 cp -a $src/autossh $fs/usr/bin
29 }