mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
39 lines
917 B
Bash
39 lines
917 B
Bash
pkgname=nmap
|
|
pkgver=7.60
|
|
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=('a8796ecc4fa6c38aad6139d9515dc8113023a82e9d787e5a5fb5fa1b05516f21')
|
|
|
|
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"
|
|
}
|