wok view corkscrew/receipt @ rev 20443

Add python-smspdu
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 13 18:04:04 2018 +0200 (2018-09-13)
parents 78cb1e930abd
children 4c206553708a
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-$VERSION.tar.gz"
10 WEB_SITE="http://www.agroman.net/corkscrew"
11 WGET_URL="$WEB_SITE/$TARBALL"
12 TAGS="ssh"
14 DEPENDS="openssh"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }