wok-6.x view autossh/receipt @ rev 21763
busybox: enable CONFIG_FDISK_SUPPORT_LARGE_DISKS
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jun 27 14:19:03 2019 +0200 (2019-06-27) |
parents | a78610b2eb47 |
children | 9af0e03b8ad0 |
line source
1 # SliTaz package receipt.
3 PACKAGE="autossh"
4 VERSION="1.4g"
5 CATEGORY="network"
6 TAGS="ssh"
7 SHORT_DESC="Automatically restart SSH sessions and tunnels."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="CC-SA"
10 WEB_SITE="https://www.harding.motd.ca/autossh/"
12 TARBALL="$PACKAGE-$VERSION.tgz"
13 WGET_URL="${WEB_SITE}$TARBALL"
15 DEPENDS="openssh"
16 BUILD_DEPENDS="openssh"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make
26 cook_pick_manpages $src/autossh.1
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/bin
33 cp -a $src/autossh $fs/usr/bin
34 }