mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-22 14:51:14 +02:00
34 lines
816 B
Bash
34 lines
816 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{9..10} )
|
|
inherit distutils-r1
|
|
|
|
HOMEPAGE="https://github.com/darkoperator/dnsrecon"
|
|
DESCRIPTION="DNS Enumeration Script"
|
|
SRC_URI="https://github.com/darkoperator/dnsrecon/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
|
|
KEYWORDS="amd64 ~arm64 x86"
|
|
|
|
RDEPEND="${PYTHON_DEPS}
|
|
dev-python/dnspython[${PYTHON_USEDEP}]
|
|
dev-python/netaddr[${PYTHON_USEDEP}]
|
|
dev-python/lxml[${PYTHON_USEDEP}]"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_prepare() {
|
|
rm -r tests || die
|
|
default
|
|
}
|
|
|
|
python_install() {
|
|
distutils-r1_python_install
|
|
# python_foreach_impl python_newscript dnsrecon.py dnsrecon
|
|
python_foreach_impl python_newscript tools/parser.py dnsrecon-parser
|
|
|
|
# dodoc -r msf_plugin/ *.md
|
|
}
|