pentoo-overlay/net-analyzer/dirsearch/dirsearch-0.3.9.ebuild
2021-01-16 19:30:19 +08:00

50 lines
1.1 KiB
Bash

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7..9} )
PYTHON_REQ_USE="threads(+)"
inherit eutils python-single-r1
DESCRIPTION="A simple command line tool designed to brute force dirs and files in websites"
HOMEPAGE="https://github.com/maurosoria/dirsearch"
SRC_URI="https://github.com/maurosoria/dirsearch/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64 ~arm64 x86"
LICENSE="GPL-2"
SLOT="0"
DEPEND="${PYTHON_DEPS}"
RDEPEND="${DEPEND}"
pkg_setup() {
python-single-r1_pkg_setup
}
src_prepare() {
#https://github.com/pentoo/pentoo-overlay/issues/512
eapply "${FILESDIR}/${PV}_add_homedir_support-r1.patch"
mv *.md Dockerfile "${T}" || die
python_fix_shebang -q "${S}"
default
}
src_install() {
insinto "/usr/share/${PN}"
doins -r *
python_optimize "${D}/usr/share/${PN}"
make_wrapper $PN \
"${PYTHON} /usr/share/${PN}/dirsearch.py"
dodoc "${T}"/{*.md,Dockerfile}
}
pkg_postinst() {
elog "\nExample: https://infosectoughguy.blogspot.com/2016/10/lazy-directory-searching-for-pentesters.html\n"
}