pentoo-overlay/net-analyzer/nmap_vulscan/nmap_vulscan-2.1.ebuild
Rick Farina (Zero_Chaos) 1ce11c92e3
net-analyzer/nmap_vulscan: add live ebuild
minor fix on stable ebuild

Signed-off-by: Rick Farina (Zero_Chaos) <zerochaos@gentoo.org>
2021-12-08 21:25:45 -05:00

25 lines
655 B
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A NSE vulnerability scanner which uses an offline version of scip VulDB"
HOMEPAGE="http://www.computec.ch/projekte/vulscan/"
SRC_URI="https://github.com/scipag/vulscan/archive/${PV}.tar.gz -> ${P}.tar.gz"
#updated db at http://www.computec.ch/projekte/vulscan/download/scipvuldb.csv
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm64 x86"
DEPEND=""
RDEPEND="net-analyzer/nmap[nse]"
S="${WORKDIR}"
src_install() {
rm -r utilities
rm .gitattributes
insinto /usr/share/nmap/scripts/vulscan
doins -r * || die "install failed"
}