wok annotate nmap/receipt @ rev 184

FIX : nmap dirin /usr/share
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue Feb 05 23:49:00 2008 +0100 (2008-02-05)
parents b320922a9117
children 10d7169ad9a0
rev   line source
erjo@180 1 # SliTaz package receipt.
erjo@180 2
erjo@180 3 PACKAGE="nmap"
erjo@180 4 VERSION="4.53"
erjo@180 5 CATEGORY="security"
erjo@180 6 SHORT_DESC="The Network Mapper."
erjo@180 7 MAINTAINER="Erjo <erjo@slitaz.org>"
erjo@180 8 DEPENDS=""
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