diff options
author | 2020-01-02 01:25:11 +0100 | |
---|---|---|
committer | 2020-01-02 01:26:15 +0100 | |
commit | 0cc7aaba3e046d24ec380e57a1b8d578d36d868a (patch) | |
tree | 11a6c3d58d16346daaf08f2f49690a7f4596e880 /net-analyzer/dnsmap/dnsmap-0.35.ebuild | |
parent | net-analyzer/packit: Old (diff) | |
download | gentoo-0cc7aaba3e046d24ec380e57a1b8d578d36d868a.tar.gz gentoo-0cc7aaba3e046d24ec380e57a1b8d578d36d868a.tar.bz2 gentoo-0cc7aaba3e046d24ec380e57a1b8d578d36d868a.zip |
net-analyzer/dnsmap: Initial commit
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
Diffstat (limited to 'net-analyzer/dnsmap/dnsmap-0.35.ebuild')
-rw-r--r-- | net-analyzer/dnsmap/dnsmap-0.35.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/net-analyzer/dnsmap/dnsmap-0.35.ebuild b/net-analyzer/dnsmap/dnsmap-0.35.ebuild new file mode 100644 index 000000000000..2e3f62f9ef88 --- /dev/null +++ b/net-analyzer/dnsmap/dnsmap-0.35.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools + +DESCRIPTION="Scan for subdomains using bruteforcing techniques" +HOMEPAGE="https://github.com/resurrecting-open-source-projects/dnsmap" +SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DOCS=( + CONTRIBUTING.md + ChangeLog + NEWS + README.md + TODO + doc/CREDITS.old +) + +src_prepare() { + default + eautoreconf +} + +src_install() { + default +} |