mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-05 19:11:57 +02:00
28 lines
776 B
Bash
28 lines
776 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
#inherit git-r3
|
|
#EGIT_COMMIT="6beff39b5cc0f7a84c3cd0fe716f75b6f26b4ee8"
|
|
HASH_COMMIT="6beff39b5cc0f7a84c3cd0fe716f75b6f26b4ee8"
|
|
|
|
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"
|
|
SRC_URI="https://github.com/scipag/vulscan/archive/${HASH_COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~arm"
|
|
|
|
DEPEND=""
|
|
RDEPEND="net-analyzer/nmap[nse]"
|
|
|
|
S="${WORKDIR}/vulscan-${HASH_COMMIT}"
|
|
|
|
src_install() {
|
|
rm -r utilities
|
|
insinto /usr/share/nmap/scripts/vulscan
|
|
doins -r * || die "install failed"
|
|
}
|