wok view corkscrew/receipt @ rev 23797

linld: fix argstr
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 23 18:02:24 2020 +0000 (2020-05-23)
parents f44ef80ff9e2
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="corkscrew"
4 VERSION="2.0"
5 CATEGORY="network"
6 SHORT_DESC="tool for tunneling ssh through proxies"
7 MAINTAINER="allan316@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-git-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/bryanpkc/corkscrew"
11 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
12 TAGS="ssh https proxy"
14 DEPENDS="openssh"
15 BUILD_DEPENDS="automake"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 autoreconf --install
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr $install/usr/share/doc
33 cp -a $install/usr/bin $fs/usr
34 cp $src/README $src/TODO $install/usr/share/doc
35 }