hcxtools-6.0.3.ebuild

This commit is contained in:
blshkv 2020-07-05 16:15:45 +08:00
parent 19c95b41f9
commit fa4c7e1b9b
No known key found for this signature in database
GPG key ID: 32BDCED870788F04
4 changed files with 60 additions and 0 deletions

View file

@ -1,2 +1,3 @@
DIST hcxdumptool-6.0.0.tar.gz 75010 BLAKE2B 05c666df3bd3e20873a0d3322619056cabaa3b61ba6e295c457fd21198c29be0868f2577ce9e71d753ac6be74378256569b770e3594b916efa6b4ab4d0e8ccf8 SHA512 cda80fc41c0f413130ac753358774fcd8d2278a832ebd92b3cefb962c4acd055cc15cfe7fe0f88f33e43db10e83ce1b2d4c968660706acf28031a079cccbe9a0
DIST hcxdumptool-6.0.6.tar.gz 86307 BLAKE2B 4e82f117a973416afef1e6a6a0dafa72c7012517dfc1265428404258a46de5c699e27b7e407ca98088bb212b4e39f822e4350f3ef18f51780895131c66e55d96 SHA512 16a52e3cc778839b8dd2418fbeae2a269907260cf1286baafe146a2de99fae1c7d9ab3e9d8a10bd8b7f8bb2bef69c857c0c71ab20e5b757477fc00d5d12d9ddb
DIST hcxdumptool-6.0.7.tar.gz 86716 BLAKE2B c57da5ce1fe9d2fdb8b10b63d873dcfc671bc45425a7be364eeb8630e8d312fa057799a282f9ea6c6e2083c7a90ef0f6d0f9e7df8c5e7d4fa4260a8db1a69d16 SHA512 3cefc460e3c63e04ba230ee87c0a915a34df4ec76efc38d296f69f4912bdb9123564ee39c3f2c5145b4ff41fa44b7a05a0ac3c789988fd5cf3997b6663746c28

View file

@ -0,0 +1,33 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Small tool to capture packets from wlan devices"
HOMEPAGE="https://github.com/ZerBea/hcxdumptool"
SRC_URI="https://github.com/ZerBea/hcxdumptool/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="gpio"
DEPEND="dev-libs/openssl:="
RDEPEND="${DEPEND}"
src_prepare() {
sed -e "s/^install: build/install:/" \
-i Makefile || die
default
}
src_compile() {
emake $(usex gpio \
"GPIOSUPPORT=on" \
"GPIOSUPPORT=off")
}
src_install(){
emake DESTDIR="${ED}" PREFIX="${EPREFIX}/usr" install
}

View file

@ -1,2 +1,3 @@
DIST hcxtools-5.3.0.tar.gz 131433 BLAKE2B cdcaa44dc6914eabc85bcaf50b76a66b77e7ae3f6d9910a4106757fb76644adb10df84159cf22fb1b5253be3e830968c87d2eb1f678c1eb1baa571fe74111a8d SHA512 2e170312847dabd1e32219ed2c4deb6c5e3a9b10f4aa792885a7db3997884aeb9534136aeaa5eddc856540faf30ec24fd06ac96c0ad20437589d7fa4858cd7d5
DIST hcxtools-6.0.2.tar.gz 177009 BLAKE2B ae9824c51924a3be8cd3ab748364c020738a096001e210e051f3bd830c09171ea9c82df75f084ee9b2114b1808396b2822fc539723231970be5e3177136ddde2 SHA512 46c501a9c2e328bda0cf10e74aa9d2cd8abff98b45c720da0658bf5234ec263bbab69a8b9768de230fb30d6bbc6d709dcdd9596f3b1e6c804e0d073dc1e3b2ff
DIST hcxtools-6.0.3.tar.gz 180144 BLAKE2B 1ed490c033390bb6e2a52c5fa179b33d2916d9eb1fed0901c719b6fd0b65b8bbe78edc763ebfe7e10f5d1ebd573469dd392e79e8109ad806aa598fae481df940 SHA512 6c111456ec2aee75c3a3b86f9afb3cb9395d6be0ca79ece5c673369fab5a4694980a2ce6bc3d031b5cc9bb492ce7e37006b78ab787cf63e292714dc8245711f6

View file

@ -0,0 +1,25 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Portable solution for capturing wlan traffic and conversion to hashcat formats"
HOMEPAGE="https://github.com/ZerBea/hcxtools"
SRC_URI="https://github.com/ZerBea/hcxtools/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
DEPEND="
dev-libs/openssl:*
sys-libs/zlib
net-misc/curl
net-libs/libpcap:="
RDEPEND="${DEPEND}"
src_install(){
emake DESTDIR="${ED}" PREFIX="${EPREFIX}/usr" install
}