wok view ptunnel/receipt @ rev 15376

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Oct 18 22:13:53 2013 +0000 (2013-10-18)
parents 9a783066b30f
children e4cda1000ec7
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 LICENSE="BSD"
9 SOURCE="PingTunnel"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://www.cs.uit.no/~daniels/PingTunnel/"
12 WGET_URL="$WEB_SITE/$TARBALL"
14 DEPENDS="libpcap"
15 BUILD_DEPENDS="libpcap-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 make
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin
28 cp -a $src/ptunnel $fs/usr/bin
29 }