36 lines
796 B
Bash
36 lines
796 B
Bash
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
|
app=nmap
|
|
version=7.94
|
|
build=1sml
|
|
homepage="https://nmap.org/"
|
|
download="https://nmap.org/dist/nmap-$version.tar.bz2"
|
|
desc="Advanced network exploration and security auditing tool"
|
|
requires="gcc-libs pcre libpcap openssl python3"
|
|
|
|
prepbuilddir() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
}
|
|
|
|
build() {
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--with-liblua=included \
|
|
--without-nmap-update
|
|
|
|
make $MAKEFLAGS
|
|
make install DESTDIR=$pkg
|
|
|
|
cp LICENSE $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
ea95e902c220435ec81bcfae7533c235fc7a91f808c0a3358b413560869309b38e057a49a96fb600bd1b378186f55e1c8dda16915d739d0a6146b90542b12903 nmap-7.94.tar.lz
|
|
"
|