wok-next diff corkscrew/receipt @ rev 21543
updated ccid (1.4.30 -> 1.4.32)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Jun 21 17:20:25 2020 +0100 (2020-06-21) |
parents | f44ef80ff9e2 |
children |
line diff
1.1 --- a/corkscrew/receipt Wed Sep 10 11:15:31 2014 +0200 1.2 +++ b/corkscrew/receipt Sun Jun 21 17:20:25 2020 +0100 1.3 @@ -1,34 +1,24 @@ 1.4 -# SliTaz package receipt. 1.5 +# SliTaz package receipt v2. 1.6 1.7 PACKAGE="corkscrew" 1.8 VERSION="2.0" 1.9 CATEGORY="network" 1.10 -SHORT_DESC="tool for tunneling ssh through proxies" 1.11 +SHORT_DESC="Tool for tunneling SSH through proxies" 1.12 MAINTAINER="allan316@gmail.com" 1.13 LICENSE="GPL2" 1.14 +WEB_SITE="http://www.agroman.net/corkscrew" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 -WEB_SITE="http://www.agroman.net/corkscrew" 1.18 WGET_URL="$WEB_SITE/$TARBALL" 1.19 -TAGS="ssh" 1.20 1.21 -DEPENDS="openssh" 1.22 - 1.23 -# Rules to configure and make the package. 1.24 -compile_rules() 1.25 -{ 1.26 - cd $src 1.27 - ./configure \ 1.28 - --prefix=/usr \ 1.29 - --infodir=/usr/share/info \ 1.30 - --mandir=/usr/share/man \ 1.31 - $CONFIGURE_ARGS && 1.32 - make && make DESTDIR=$DESTDIR install 1.33 +compile_rules() { 1.34 + ./configure $CONFIGURE_ARGS && 1.35 + make && 1.36 + make DESTDIR=$install install 1.37 } 1.38 1.39 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.40 -genpkg_rules() 1.41 -{ 1.42 - mkdir -p $fs/usr 1.43 - cp -a $install/usr/bin $fs/usr 1.44 +genpkg_rules() { 1.45 + copy @std 1.46 + DEPENDS="openssh" 1.47 + TAGS="ssh" 1.48 } 1.49 -