mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-15 21:02:30 +01:00
25 lines
636 B
Bash
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"
|
|
}
|