wok-6.x annotate p0f/receipt @ rev 11398
Compat: squirrelmail trigger cook of squirrelmail-* only when using cookutils - I don't think this piece of code is needed at all as squirrel-* will be cooked anyway if one update them
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Sat Dec 10 13:19:00 2011 +0100 (2011-12-10) |
parents | |
children | d5189db061ed |
rev | line source |
---|---|
slaxemulator@10259 | 1 # SliTaz package receipt. |
slaxemulator@10259 | 2 |
slaxemulator@10259 | 3 PACKAGE="p0f" |
slaxemulator@10259 | 4 VERSION="2.0.8" |
slaxemulator@10259 | 5 CATEGORY="network" |
slaxemulator@10259 | 6 SHORT_DESC="passive OS fingerprinting tool" |
slaxemulator@10259 | 7 MAINTAINER="slaxemulator@gmail.com" |
slaxemulator@10259 | 8 BUILD_DEPENDS="libpcap-dev" |
slaxemulator@10259 | 9 TARBALL="$PACKAGE-$VERSION.tgz" |
slaxemulator@10259 | 10 WEB_SITE="http://lcamtuf.coredump.cx/p0f.shtml" |
slaxemulator@10259 | 11 WGET_URL="http://lcamtuf.coredump.cx/p0f/$TARBALL" |
slaxemulator@10259 | 12 |
slaxemulator@10259 | 13 # Rules to configure and make the package. |
slaxemulator@10259 | 14 compile_rules() |
slaxemulator@10259 | 15 { |
slaxemulator@10259 | 16 cd $src |
slaxemulator@10259 | 17 make |
slaxemulator@10259 | 18 } |
slaxemulator@10259 | 19 |
slaxemulator@10259 | 20 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@10259 | 21 genpkg_rules() |
slaxemulator@10259 | 22 { |
slaxemulator@10259 | 23 mkdir -p $fs/usr/sbin $fs/etc/p0f |
slaxemulator@10259 | 24 install -m744 $src/p0f $src/p0frep $fs/usr/sbin |
slaxemulator@10259 | 25 install -m644 $src/p0f.fp $src/p0fa.fp $src/p0fr.fp $src/p0fo.fp $fs/etc/p0f |
slaxemulator@10259 | 26 } |
slaxemulator@10259 | 27 |