wok view nmap/receipt @ rev 14115

nmap: up 6.25
author Samuel Trassare <samuel_trassare@yahoo.com>
date Sun Feb 24 15:58:03 2013 -0800 (2013-02-24)
parents 506f5658c490
children 1626c8239803
line source
1 # SliTaz package receipt.
3 PACKAGE="nmap"
4 VERSION="6.25"
5 CATEGORY="security"
6 SHORT_DESC="The Network Mapper."
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="openssl libpcap pcre gcc-lib-base"
9 BUILD_DEPENDS="$DEPENDS libpcap-dev python-dev openssl-dev pcre-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://nmap.org/"
12 WGET_URL="http://download.insecure.org/nmap/dist/$TARBALL"
13 TAGS="network"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure \
19 --cache-file=$PWD/config.cache \
20 --without-liblua \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install-nmap
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr $fs/usr/share
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/share/nmap $fs/usr/share
32 }