wok view ptunnel/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents e7947833aa28
children bf4a09ef1d2e
line source
1 # SliTaz package receipt.
3 PACKAGE="ptunnel"
4 VERSION="0.71"
5 CATEGORY="network"
6 SHORT_DESC="ptunnel tunnels TCP using ICMP echo request"
7 MAINTAINER="slaxemulator@gmail.com"
8 SOURCE="PingTunnel"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://www.cs.uit.no/~daniels/PingTunnel/"
11 WGET_URL="$WEB_SITE/$TARBALL"
13 DEPENDS="libpcap"
14 BUILD_DEPENDS="libpcap-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 make
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp -a $src/ptunnel $fs/usr/bin
28 }