seclists-2020.4.ebuild

This commit is contained in:
blshkv 2020-11-05 08:01:02 +08:00
parent 5513b67234
commit cad5e10a04
No known key found for this signature in database
GPG key ID: 32BDCED870788F04
2 changed files with 20 additions and 0 deletions

View file

@ -1 +1,2 @@
DIST seclists-2020.3.tar.gz 458073441 BLAKE2B 1d8024ddc7a7bdc9513b4f0695eb585049b910a8984052e6b81c525dc76fb6824f9d2588190a128773793851c95e4d49c8f3763875335f3f9e55b32c9f426951 SHA512 784b59008e24c3300bef7b13d64b531319c7e02a61ccc5f1591ac68b5b4f305d7841fe239874ef8e23b98115e7b34ba0bb347bc7695263ae81887a4af03d4509
DIST seclists-2020.4.tar.gz 499086605 BLAKE2B a82914e3576c9991ac31be98c1cbb13e5452b6b370f0427a9532e70cb6be0da4bdfa0aa46d68d55a4ef7fc32cb4630fb4a6a89a64ae5e311f2b93cfdc1ae2914 SHA512 5f403e35615368233d37763609b6fe79ff339400de7cf94e6b86fed4e188f307c565539d7ee9c43837a6821eba2abe2053e49b4ed066439a1451f7c34132dbfa

View file

@ -0,0 +1,19 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A collection of multiple types of lists used during security assessments"
HOMEPAGE="https://github.com/danielmiessler/SecLists"
SRC_URI="https://github.com/danielmiessler/SecLists/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm x86"
S="${WORKDIR}/SecLists-${PV}"
src_install(){
insinto /usr/share/dict/seclists
doins -r *
}