pentoo-overlay/net-wireless/bully/bully-1.4-r1.ebuild
Rick Farina (Zero_Chaos) 97569c422b
bully: fix deps
2023-02-22 11:37:40 -05:00

25 lines
636 B
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
#https://github.com/kimocoder/bully/issues/3
MY_PV="${PV}-00"
DESCRIPTION="A wifi-protected-setup (WPS) brute force attack tool, similar to reaver"
HOMEPAGE="https://github.com/aanarchyy/bully/releases"
SRC_URI="https://github.com/kimocoder/bully/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
SLOT="0"
LICENSE="GPL-3+ GPL-2 BSD"
KEYWORDS="amd64 ~arm64 x86"
DEPEND="net-libs/libpcap"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}-${MY_PV}/src"
src_install() {
emake DESTDIR="${D}" prefix=/usr install
dodoc "${S}/../README.md"
}