wok diff tcpdump/receipt @ rev 68
Add : wxWidgets libs + dev package
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Mon Dec 24 16:07:17 2007 +0100 (2007-12-24) |
parents | |
children | 7ed87c4c202a |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/tcpdump/receipt Mon Dec 24 16:07:17 2007 +0100 1.3 @@ -0,0 +1,29 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="tcpdump" 1.7 +VERSION="3.9.8" 1.8 +CATEGORY="security" 1.9 +SHORT_DESC="cli wire sniffer" 1.10 +DEPENDS="openssl" 1.11 +MAINTAINER="Serge Daigle <sdaigl@lacitec.on.ca>" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="www.tcpdump.org" 1.14 +WGET_URL="http://www.tcpdump.org/release/$TARBALL"; 1.15 + 1.16 +# Rules to configure and make the package. 1.17 +compile_rules() 1.18 +{ 1.19 + cd $src 1.20 + ./configure --prefix=/usr --infodir=/usr/share/info \ 1.21 + --mandir=/usr/share/man $CONFIGURE_ARGS 1.22 + make 1.23 + make DESTDIR=$PWD/_pkg install 1.24 +} 1.25 + 1.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.27 +genpkg_rules() 1.28 +{ 1.29 + mkdir -p $fs/usr 1.30 + cp -a $_pkg/usr/sbin $fs/usr 1.31 + strip -s $fs/usr/sbin/* 1.32 +}