23 lines
562 B
Plaintext
23 lines
562 B
Plaintext
# Description: Utility for network exploration or security auditing
|
|
# URL: http://nmap.org
|
|
# Maintainer: Simone Rota, sip at crux dot nu
|
|
# Packager: sten, nick dot steeves at shaw dot ca
|
|
|
|
name=nmap
|
|
version=4.60
|
|
release=1
|
|
source=(http://nmap.org/dist/$name-$version.tar.bz2)
|
|
|
|
|
|
build () {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --libexecdir=/usr/lib --mandir=/usr/man \
|
|
--with-libpcre=included --with-liblua=included \
|
|
--with-libpcap=included --without-zenmap
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/man/man1/zenmap.*
|
|
|
|
|
|
}
|