2006-02-23 15:26:10 +00:00
|
|
|
# Description: Utility for network exploration or security auditing
|
2008-03-25 16:04:38 +00:00
|
|
|
# URL: http://nmap.org
|
2006-04-13 21:43:04 +00:00
|
|
|
# Maintainer: Simone Rota, sip at crux dot nu
|
2006-02-23 15:26:10 +00:00
|
|
|
# Packager: sten, nick dot steeves at shaw dot ca
|
|
|
|
|
|
|
|
name=nmap
|
2008-08-05 22:17:54 +00:00
|
|
|
version=4.68
|
2008-03-25 16:04:38 +00:00
|
|
|
release=1
|
|
|
|
source=(http://nmap.org/dist/$name-$version.tar.bz2)
|
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build () {
|
|
|
|
cd $name-$version
|
2008-03-25 16:04:38 +00:00
|
|
|
./configure --prefix=/usr --libexecdir=/usr/lib --mandir=/usr/man \
|
2008-03-11 15:44:09 +00:00
|
|
|
--with-libpcre=included --with-liblua=included \
|
|
|
|
--with-libpcap=included --without-zenmap
|
2006-02-23 15:26:10 +00:00
|
|
|
make
|
2008-03-11 15:44:09 +00:00
|
|
|
make DESTDIR=$PKG install
|
2008-03-25 16:04:38 +00:00
|
|
|
rm -rf $PKG/usr/man/man1/zenmap.*
|
|
|
|
|
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|