seclists: initial ebuild

This commit is contained in:
blshkv 2018-08-07 11:11:46 +08:00
parent 004f083deb
commit 92534f027b
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1 @@
DIST seclists-2018.2.tar.gz 211871095 BLAKE2B 6653a0cb95c7d3aa72dab2d77735b1a114fcabbc278b78b9d45149fc7b0b3be5bf6bde99f136942eb5e6def030715668b8af217147b34f60841519fa6d78ace1 SHA512 0ba4711619504b5cdd5303689fb60f957ba4094e93a8b36d210543f8891a03e133e8baa444c4a28787a825718e709aba596da0da39a6eaee9ab8c384eab60b8e

View file

@ -0,0 +1,20 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
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 ~x86 ~arm"
IUSE=""
S="${WORKDIR}/SecLists-${PV}"
src_install(){
insinto /usr/share/seclists
doins -r *
}