mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-03 04:00:54 +02:00
seclists: initial ebuild
This commit is contained in:
parent
004f083deb
commit
92534f027b
2 changed files with 21 additions and 0 deletions
1
app-dicts/seclists/Manifest
Normal file
1
app-dicts/seclists/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST seclists-2018.2.tar.gz 211871095 BLAKE2B 6653a0cb95c7d3aa72dab2d77735b1a114fcabbc278b78b9d45149fc7b0b3be5bf6bde99f136942eb5e6def030715668b8af217147b34f60841519fa6d78ace1 SHA512 0ba4711619504b5cdd5303689fb60f957ba4094e93a8b36d210543f8891a03e133e8baa444c4a28787a825718e709aba596da0da39a6eaee9ab8c384eab60b8e
|
||||
20
app-dicts/seclists/seclists-2018.2.ebuild
Normal file
20
app-dicts/seclists/seclists-2018.2.ebuild
Normal 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 *
|
||||
}
|
||||
Loading…
Reference in a new issue