wok view corkscrew/receipt @ rev 14052

catfish: forgotten stuff
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Feb 19 17:18:17 2013 +0000 (2013-02-19)
parents
children 78cb1e930abd
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 DEPENDS="openssh"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.agroman.net/corkscrew"
11 WGET_URL="$WEB_SITE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make && make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 }