wok-current view autossh/receipt @ rev 19847
Up sdft (170314): fix lines order (in all processed .desktop files)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Mar 14 21:00:20 2017 +0200 (2017-03-14) |
parents | 7f39549720b8 |
children | 86790a278e70 |
line source
1 # SliTaz package receipt.
3 PACKAGE="autossh"
4 VERSION="1.4d"
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"
12 TAGS="ssh"
14 DEPENDS="openssh"
15 BUILD_DEPENDS="openssh"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make
25 cook_pick_manpages $src/autossh.1
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/bin
32 cp -a $src/autossh $fs/usr/bin
33 }