blob: d0d33f60dcf11a18dcffd275065d90064a93b387 (
plain)
1 # Description: Utility for network exploration or security auditing
2 # URL: http://nmap.org
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Packager: sten, nick dot steeves at shaw dot ca
5 # Depends on: libpcap
6
7 name=nmap
8 version=7.40
9 release=1
10 source=(http://nmap.org/dist/$name-$version.tar.bz2)
11
12
13 build () {
14 cd $name-$version
15 ./configure --prefix=/usr --libexecdir=/usr/lib --mandir=/usr/man \
16 --with-libpcre=included --with-liblua=included \
17 --without-zenmap --without-ndiff --disable-nls \
18 --without-nmap-update
19
20 make
21 make DESTDIR=$PKG install
22
23 rm -f $PKG/usr/share/nmap/nselib/data/psexec/README
24
25 }
|