mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-01 03:00:57 +02:00
hcxdumptool: 5.1.1 bump
This commit is contained in:
parent
592cfefecd
commit
f634eec41d
2 changed files with 29 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST hcxdumptool-5.0.0.tar.gz 52269 BLAKE2B 43d98f440b65df7fde7b4c0c176ca18a0943184d49bc9be4517c02dac6cc2d1eeda7bd9436979a6792e73a84a84cd54cdfc6659e98b3b5e06d3cb164a28f65fa SHA512 ee2ac03850e83a869eb5835d0cab40b15307c247c3389fd5987a75308646d7abd5439b4f5b93902069ab56fc46411e09cd6dca0d39bdfbbaf9c80b1f3dd76bd7
|
||||
DIST hcxdumptool-5.1.0.tar.gz 53270 BLAKE2B 1636f45f7bcf8cb925e54661241e42a01260a89ee7008b5e43384121fd5b4eb15aa706c49051f778010087879da5dd6f72a72a05d5fbfffec6ba825fa3c59fc5 SHA512 4f9485b21c2e81c1bff8982f74e46dcead43b38fc7a894c2db5005c9455562212ed559944f5c579e702539bcb7af0737bbebc537952d1ede9bb08ef9edb9d5db
|
||||
DIST hcxdumptool-5.1.1.tar.gz 56851 BLAKE2B 9f59da5ca43a43cd2b5c5d5e7e70314ccae4eeb009774a0410c6963a0c05ffafa096a86697040fe579cbec83b58878fd01a39a4285306396baea2f80d2b94de5 SHA512 3204940be6533926576d0d3691882a4aa32fd0255a8536ca3d65b4a69e4aaa16851c4b8ee9b734767adc18669f61f95d281e9d06f3a7bf1ffa91f77f50670e3c
|
||||
|
|
|
|||
28
net-wireless/hcxdumptool/hcxdumptool-5.1.1.ebuild
Normal file
28
net-wireless/hcxdumptool/hcxdumptool-5.1.1.ebuild
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# 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=""
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_configure(){
|
||||
local GPIOSUPPORT
|
||||
if use gpio; then
|
||||
GPIOSUPPORT="GPIOSUPPORT=on"
|
||||
fi
|
||||
emake ${GPIOSUPPORT}
|
||||
}
|
||||
|
||||
src_install(){
|
||||
emake ${GPIOSUPPORT} DESTDIR="${ED}" PREFIX="${EPREFIX}/usr" install
|
||||
}
|
||||
Loading…
Reference in a new issue