mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-22 16:23:57 +01:00
39 lines
757 B
Bash
39 lines
757 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=4
|
|
|
|
DESCRIPTION="Wfuzz is a tool designed for bruteforcing Web Applications"
|
|
HOMEPAGE="http://www.edge-security.com/wfuzz.php"
|
|
SRC_URI="http://wfuzz.googlecode.com/files/${P}.tgz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="dev-python/pycurl"
|
|
|
|
#S=${WORKDIR}/${PN}
|
|
S=${WORKDIR}/wfuzz-read-only
|
|
|
|
src_compile() {
|
|
einfo "Nothing to compile"
|
|
}
|
|
|
|
src_install() {
|
|
dodir /usr/lib/
|
|
dodir /usr/bin/
|
|
|
|
dodoc README
|
|
rm COPYING README LICENSES
|
|
|
|
# should be as simple as copying everything into the target...
|
|
cp -pPR "${S}" "${D}"usr/lib/wfuzz || die
|
|
|
|
dobin "${FILESDIR}"/wfuzz
|
|
fowners -R root:0 *
|
|
|
|
}
|