wok view autossh/receipt @ rev 14141

libmnl*: add 1.0.3
author Samuel Trassare <samuel_trassare@yahoo.com>
date Fri Mar 01 08:37:16 2013 -0800 (2013-03-01)
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 }