wok-current diff corkscrew/receipt @ rev 23863
syslinux/isoboot.s: accept user args
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Jun 19 15:46:21 2020 +0000 (2020-06-19) |
parents | f44ef80ff9e2 |
children | 5ea0ce1cecc0 |
line diff
1.1 --- a/corkscrew/receipt Wed Sep 10 11:15:31 2014 +0200 1.2 +++ b/corkscrew/receipt Fri Jun 19 15:46:21 2020 +0000 1.3 @@ -6,17 +6,18 @@ 1.4 SHORT_DESC="tool for tunneling ssh through proxies" 1.5 MAINTAINER="allan316@gmail.com" 1.6 LICENSE="GPL2" 1.7 -TARBALL="$PACKAGE-$VERSION.tar.gz" 1.8 -WEB_SITE="http://www.agroman.net/corkscrew" 1.9 -WGET_URL="$WEB_SITE/$TARBALL" 1.10 -TAGS="ssh" 1.11 +TARBALL="$PACKAGE-git-$VERSION.tar.gz" 1.12 +WEB_SITE="https://github.com/bryanpkc/corkscrew" 1.13 +WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" 1.14 +TAGS="ssh https proxy" 1.15 1.16 DEPENDS="openssh" 1.17 +BUILD_DEPENDS="automake" 1.18 1.19 # Rules to configure and make the package. 1.20 compile_rules() 1.21 { 1.22 - cd $src 1.23 + autoreconf --install 1.24 ./configure \ 1.25 --prefix=/usr \ 1.26 --infodir=/usr/share/info \ 1.27 @@ -28,7 +29,7 @@ 1.28 # Rules to gen a SliTaz package suitable for Tazpkg. 1.29 genpkg_rules() 1.30 { 1.31 - mkdir -p $fs/usr 1.32 + mkdir -p $fs/usr $install/usr/share/doc 1.33 cp -a $install/usr/bin $fs/usr 1.34 + cp $src/README $src/TODO $install/usr/share/doc 1.35 } 1.36 -