wok-6.x annotate 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 |
rev | line source |
---|---|
pascal@13388 | 1 # SliTaz package receipt. |
pascal@13388 | 2 |
pascal@13388 | 3 PACKAGE="autossh" |
Hans-G?nter@20728 | 4 VERSION="1.4g" |
pascal@13388 | 5 CATEGORY="network" |
Hans-G?nter@20728 | 6 TAGS="ssh" |
pascal@13388 | 7 SHORT_DESC="Automatically restart SSH sessions and tunnels." |
pascal@13388 | 8 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15379 | 9 LICENSE="CC-SA" |
pascal@20669 | 10 WEB_SITE="https://www.harding.motd.ca/autossh/" |
Hans-G?nter@20728 | 11 |
pascal@13388 | 12 TARBALL="$PACKAGE-$VERSION.tgz" |
pascal@13388 | 13 WGET_URL="${WEB_SITE}$TARBALL" |
pascal@13388 | 14 |
pascal@13388 | 15 DEPENDS="openssh" |
pascal@15613 | 16 BUILD_DEPENDS="openssh" |
pascal@13388 | 17 |
pascal@13388 | 18 # Rules to configure and make the package. |
pascal@13388 | 19 compile_rules() |
pascal@13388 | 20 { |
al@19275 | 21 ./configure \ |
al@19275 | 22 --prefix=/usr \ |
pascal@13388 | 23 $CONFIGURE_ARGS && |
pascal@13388 | 24 make |
al@19269 | 25 |
al@19275 | 26 cook_pick_manpages $src/autossh.1 |
pascal@13388 | 27 } |
pascal@13388 | 28 |
pascal@13388 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@13388 | 30 genpkg_rules() |
pascal@13388 | 31 { |
pascal@13388 | 32 mkdir -p $fs/usr/bin |
pascal@13389 | 33 cp -a $src/autossh $fs/usr/bin |
pascal@13388 | 34 } |