wok diff libpcap/receipt @ rev 15366
perl: add threads support (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Oct 04 09:55:59 2013 +0000 (2013-10-04) |
parents | e5ae411e1d8c |
children | e4cda1000ec7 |
line diff
1.1 --- a/libpcap/receipt Mon Apr 04 01:54:51 2011 +0000 1.2 +++ b/libpcap/receipt Fri Oct 04 09:55:59 2013 +0000 1.3 @@ -1,16 +1,18 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libpcap" 1.7 -VERSION="1.1.1" 1.8 +VERSION="1.4.0" 1.9 CATEGORY="development" 1.10 SHORT_DESC="library for tcpdump" 1.11 MAINTAINER="sdaigl@lacitec.on.ca" 1.12 -DEPENDS="libnl" 1.13 -BUILD_DEPENDS="flex bison" 1.14 +LICENSE="BSD" 1.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.16 WEB_SITE="http://www.tcpdump.org/" 1.17 WGET_URL="http://www.tcpdump.org/release/$TARBALL"; 1.18 1.19 +DEPENDS="libnl" 1.20 +BUILD_DEPENDS="flex bison" 1.21 + 1.22 # Rules to configure and make the package. 1.23 compile_rules() 1.24 { 1.25 @@ -18,13 +20,13 @@ 1.26 ./configure --prefix=/usr --infodir=/usr/share/info \ 1.27 --mandir=/usr/share/man $CONFIGURE_ARGS && 1.28 make && 1.29 - make DESTDIR=$PWD/_pkg install 1.30 + make DESTDIR=$DESTDIR install 1.31 } 1.32 1.33 # Rules to gen a SliTaz package suitable for Tazpkg. 1.34 genpkg_rules() 1.35 { 1.36 mkdir -p $fs/usr/lib 1.37 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.38 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.39 } 1.40