mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-29 11:48:25 +01:00
25 lines
589 B
Bash
25 lines
589 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="A NSE vulnerability scanner which uses an offline version of scip VulDB"
|
|
HOMEPAGE="http://www.computec.ch/projekte/vulscan/"
|
|
EGIT_REPO_URI="https://github.com/scipag/vulscan.git"
|
|
EGIT_COMMIT="c1bd1a7470132db9fa7179153a756716dadbe3ea"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~arm"
|
|
|
|
DEPEND=""
|
|
RDEPEND="net-analyzer/nmap[nse]"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
src_install() {
|
|
insinto /usr/share/nmap/scripts/vulscan
|
|
doins -r * || die "install failed"
|
|
}
|