mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-01-05 23:33:11 +01:00
32 lines
831 B
Bash
32 lines
831 B
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit eutils
|
|
|
|
DESCRIPTION="Fast directory scanning and scraping tool"
|
|
HOMEPAGE="https://github.com/nccgroup/dirble"
|
|
|
|
MY_PN="${PN%-bin}"
|
|
SRC_URI="
|
|
amd64? ( https://github.com/nccgroup/dirble/releases/download/v${PV}/dirble-${PV}-20190709-x86_64-linux.zip -> ${P}-amd64.zip )
|
|
x86? ( https://github.com/nccgroup/dirble/releases/download/v${PV}/dirble-${PV}-20190709-i686-linux.zip -> ${P}-x86.zip )"
|
|
|
|
KEYWORDS="-* ~amd64 ~x86"
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
#RDEPEND="!net-analyzer/dirble"
|
|
|
|
S="${WORKDIR}"/${MY_PN}
|
|
|
|
src_install() {
|
|
local ins_dir="/opt/${MY_PN}"
|
|
|
|
insinto "${ins_dir}" && exeinto "${ins_dir}"
|
|
doins -r dirble_wordlist.txt extensions
|
|
doexe ${MY_PN}
|
|
|
|
make_wrapper "${PN%-bin}" \
|
|
"${ins_dir}/${MY_PN}"
|
|
}
|