summaryrefslogtreecommitdiff
path: root/nmap/Pkgfile
blob: a7ab78d4173623f3f4d17ee7524dc2fd57139043 (plain)
    1 # Description: Utility for network exploration or security auditing
    2 # URL: https://nmap.org
    3 # Maintainer: Tim Biermann, tbier at posteo dot de
    4 # Depends on: libpcap lua
    5 
    6 name=nmap
    7 version=7.93
    8 release=1
    9 source=(https://nmap.org/dist/$name-$version.tar.bz2)
   10 
   11 
   12 build () {
   13   cd $name-$version
   14 
   15   ./configure --prefix=/usr \
   16     --libexecdir=/usr/lib \
   17     --with-libpcre=included \
   18     --with-liblua=included \
   19     --without-zenmap \
   20     --without-ndiff \
   21     --disable-nls \
   22     --without-nmap-update
   23   make
   24   make DESTDIR=$PKG install
   25 
   26   find $PKG -iname '*readme*' -exec rm -fr '{}' \+
   27 }

Generated by cgit