pkgname=nmap pkgver=7.40 pkgrel=1 pkgdesc="A network exploration tool and security/port scanner" arch=('x86_64') url="http://nmap.org" license=('custom:GPL') depends=('pcre' 'openssl' 'libpcap>=1.0.0' 'lua') # pygtk is needed for zenmap makedepends=('python2') optdepends=('pygtk: gui for nmap - zenmap') options=('!makeflags') source=(http://nmap.org/dist/${pkgname}-${pkgver}.tar.bz2) sha256sums=('9e14665fffd054554d129d62c13ad95a7b5c7a046daa2290501909e65f4d3188') build() { cd "${srcdir}/${pkgname}-${pkgver}" export PYTHON=python2 ./configure \ --prefix=/usr \ --libexecdir=/usr/lib \ --mandir=/usr/share/man make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install # remove zenmap uninstall script rm "${pkgdir}/usr/bin/uninstall_zenmap" # install custom GPL2 license install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }