wok annotate nmap/receipt @ rev 1602

Add perl-net-telnet
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 19 11:13:50 2008 +0000 (2008-10-19)
parents a075ff895254
children 7d4197e5834d
rev   line source
erjo@180 1 # SliTaz package receipt.
erjo@180 2
erjo@180 3 PACKAGE="nmap"
erjo@1389 4 VERSION="4.76"
erjo@180 5 CATEGORY="security"
erjo@180 6 SHORT_DESC="The Network Mapper."
erjo@784 7 MAINTAINER="erjo@slitaz.org"
paul@559 8 DEPENDS="openssl"
erjo@180 9 BUILD_DEPENDS="python-dev"
erjo@180 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@180 11 WEB_SITE="http://nmap.org/"
erjo@180 12 WGET_URL="http://download.insecure.org/nmap/dist/$TARBALL"
erjo@180 13
erjo@180 14 # Rules to configure and make the package.
erjo@180 15 compile_rules()
erjo@180 16 {
erjo@180 17 cd $src
erjo@184 18 ./configure --prefix=/usr \
erjo@184 19 --infodir=/usr/share/info \
erjo@184 20 --cache-file=$PWD/config.cache \
erjo@184 21 --mandir=/usr/share/man $CONFIGURE_ARGS
erjo@184 22
erjo@180 23 make
erjo@180 24 make DESTDIR=$PWD/_pkg install-nmap
erjo@180 25 }
erjo@180 26
erjo@180 27 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@180 28 genpkg_rules()
erjo@180 29 {
erjo@184 30 mkdir -p $fs/usr $fs/usr/share
erjo@184 31
erjo@180 32 cp -a $_pkg/usr/bin $fs/usr
erjo@184 33 cp -a $_pkg/usr/share/nmap $fs/usr/share
erjo@184 34
erjo@180 35 strip -s $fs/usr/bin/*
erjo@180 36 }
erjo@180 37