mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 20:43:38 +02:00
fuzzdb: new ebuild donated from tecknicaltom closes #177
This commit is contained in:
parent
be3c50c2a2
commit
4ac04ce367
2 changed files with 24 additions and 0 deletions
2
app-fuzz/fuzzdb/Manifest
Normal file
2
app-fuzz/fuzzdb/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST fuzzdb-1.09.tgz 6076227 RMD160 a7f57b9b117d1280eb46f4159bfede6d6a35bfde SHA1 5d675040515a1870980c38d5c65d8eb549818774 SHA256 a3b62242e8cf19ff4c7baee08b5660d933eb88dff105753670351d14f4930234
|
||||
EBUILD fuzzdb-1.09.ebuild 508 RMD160 1a64ccc01609a83fa1b6b8614906e9061128c75e SHA1 cdde29f19495706e09874aa7554522f7847dcad0 SHA256 0a92ad927a7352161e0f1d07252571082884f1054d9999666c8ee7d9ba52c43a
|
||||
22
app-fuzz/fuzzdb/fuzzdb-1.09.ebuild
Normal file
22
app-fuzz/fuzzdb/fuzzdb-1.09.ebuild
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=3
|
||||
|
||||
DESCRIPTION="Attack and Discovery Pattern Database for Application Fuzz Testing"
|
||||
HOMEPAGE="https://code.google.com/p/fuzzdb/"
|
||||
SRC_URI="http://fuzzdb.googlecode.com/files/${P}.tgz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_install() {
|
||||
dodir "/usr/share/${PN}/"
|
||||
cp -R "${S}"/* "${D}"/usr/share/"${PN}"/ || die "Install failed!"
|
||||
}
|
||||
Loading…
Reference in a new issue