mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-19 23:06:41 +01:00
54 lines
1.3 KiB
Bash
54 lines
1.3 KiB
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
EGO_PN="github.com/ffuf/ffuf"
|
|
|
|
# go mod vendor && grep "# g" ./vendor/modules.txt | sort
|
|
EGO_VENDOR=(
|
|
"github.com/adrg/xdg v0.4.0"
|
|
"github.com/andybalholm/cascadia v1.3.1"
|
|
"github.com/pelletier/go-toml v1.9.5"
|
|
"github.com/PuerkitoBio/goquery v1.8.0"
|
|
"golang.org/x/net v0.5.0 github.com/golang/net"
|
|
"golang.org/x/sys v0.4.0 github.com/golang/sys"
|
|
)
|
|
|
|
inherit golang-vcs-snapshot
|
|
|
|
DESCRIPTION="Fast web fuzzer / directory brute force"
|
|
HOMEPAGE="https://github.com/ffuf/ffuf"
|
|
|
|
if [[ ${PV} == *9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/ffuf/ffuf"
|
|
else
|
|
SRC_URI="https://github.com/ffuf/ffuf/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
|
${EGO_VENDOR_URI}"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
|
fi
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
|
|
BDEPEND="dev-lang/go"
|
|
|
|
src_compile() {
|
|
GOPATH="${S}:$(get_golibdir_gopath)" \
|
|
GOCACHE="${T}/go-cache" \
|
|
go build -v -work -x -ldflags="-w" "${EGO_PN}"
|
|
}
|
|
|
|
src_install() {
|
|
GOPATH="${S}:$(get_golibdir_gopath)" \
|
|
GOCACHE="${T}/go-cache" \
|
|
go install -v -work -x -ldflags="-w" "${EGO_PN}"
|
|
|
|
dobin bin/${PN}
|
|
dodoc src/"${EGO_PN}"/README.md
|
|
}
|
|
|
|
pkg_postinst() {
|
|
einfo "\nSee documentation: https://github.com/ffuf/ffuf#usage\n"
|
|
}
|