mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-09 04:51:27 +02:00
dirble-bin: 1.4.0 bump
This commit is contained in:
parent
9f8d229614
commit
0b2c8d3b05
2 changed files with 34 additions and 0 deletions
|
|
@ -1,2 +1,4 @@
|
|||
DIST dirble-bin-1.3.1-amd64.zip 3181636 BLAKE2B 2b5e7b9f2cd89fe1ef83a4d9a4f448d9bfa3ece6f515c4fbd1911a18ba32275b54d4e3005de9626ba7be756d569a8827ba874b5d6bbcdb99e2546351a50c4595 SHA512 15e4d9a80d89b5bc81788edd8a6dd5019723ba15577f7a38a451c7676d3ebcf04216d60e169d9cd465fe258043451f433b3fca6c117f43807252282529cf9e37
|
||||
DIST dirble-bin-1.3.1-x86.zip 3016752 BLAKE2B e19120fb1adcb919128c877c95a37bfdc828e6b8d99afed68898a8b80b724612c39f239e38ef943e7aa82e1f5b51d6c55d5349476398018a6944aa6adc3596d0 SHA512 415af0b6b4ec3520ed47fc141e6de9b0159945b19e5748361670e328e4a336e1339761112f238d3af876c6b09e5a62543a8569b661d242c2299755cb0704c1dc
|
||||
DIST dirble-bin-1.4.0-amd64.zip 3173938 BLAKE2B b35151a90f6e8e791d750d483afe412ebe0fca44272c5b6e54317d1271a88ba5a0f90dab57b7aca24aee7a52013a056777d6cb2961608481b6b46f4c77e17fce SHA512 c1e0b8dd1838dfdd17614422832f8594989fd3904d7808cbed00b46b01be550e03ecb5edab4dcacecccfee2694ae9e156347cf6fef439176565de06cb621b4bb
|
||||
DIST dirble-bin-1.4.0-x86.zip 3006514 BLAKE2B f847fd1ac39271d9a36d74993b79d4beb5e69bc63a1ab3c9326ad8489bd1ce2fe22db9ceed1eb9f2a6db086aeb0822a10707ce5c55106ffed49ddb98248a8182 SHA512 ccb61daa9965e37a434afd718b75e62893bc78d49631852e4784240e2138d84ac6183565115e5ed6732bb5d1679da7628fb713bfcdac70f370a61e49a161b88c
|
||||
|
|
|
|||
32
net-analyzer/dirble-bin/dirble-bin-1.4.0.ebuild
Normal file
32
net-analyzer/dirble-bin/dirble-bin-1.4.0.ebuild
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# 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}.1.0-20190705-x86_64-linux.zip -> ${P}-amd64.zip )
|
||||
x86? ( https://github.com/nccgroup/dirble/releases/download/v${PV}/dirble-${PV}.1.0-20190705-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}"
|
||||
}
|
||||
Loading…
Reference in a new issue