wok view autossh/receipt @ rev 22441

vlc: lots of warnings/missing -> add 29 deps at end, unsorted for now
author Erkan Yilmaz <erkan@slitaz.org>
date Mon Dec 23 15:00:20 2019 +0000 (2019-12-23)
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 }