wok view autossh/receipt @ rev 15293
accessx: link with libX11
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Sep 27 08:54:59 2013 +0000 (2013-09-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 }