pixiewps: new package

Pixie WPS is a C based tool to audit networks against so called "Pixie
Dust" attacks.

Signed-off-by: Guillaume W. Bres <guillaume.bressaix@gmail.com>
[Thomas:
 - fix license, it's GPL-3.0+
 - use PREFIX= instead of prefix= to actually have an effect, and
   install in /usr and not /usr/local
 - remove reference to PIXIEWPS_SUBDIR, which was never defined, and
   was not needed anyway]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Guillaume W. Bres 2018-04-12 15:18:51 +02:00 committed by Thomas Petazzoni
parent 49395dc0e5
commit af4361a67a
5 changed files with 33 additions and 0 deletions

View file

@ -794,6 +794,7 @@ F: package/sdl2/
N: Guillaume William Brs <guillaume.bressaix@gmail.com>
F: package/liquid-dsp/
F: package/pixiewps/
F: package/reaver/
N: Guo Ren <ren_guo@c-sky.com>

View file

@ -1809,6 +1809,7 @@ endif
source "package/phidgetwebservice/Config.in"
source "package/phytool/Config.in"
source "package/pimd/Config.in"
source "package/pixiewps/Config.in"
source "package/pound/Config.in"
source "package/pppd/Config.in"
source "package/pptp-linux/Config.in"

View file

@ -0,0 +1,7 @@
config BR2_PACKAGE_PIXIEWPS
bool "pixiewps"
help
Pixie WPS is a C based tool to audit networks against the so
called "Pixie Dust" attack.
https://github.com/wiire-a/pixiewps/wiki

View file

@ -0,0 +1,3 @@
# locally computed
sha256 d3d3cf57851e3e734fb1797aa078239ef161d1cbeffc4438497d58a425ef22a2 pixiewps-9e5bdc6c86c8487b2a6107d5ab3559ed5c738c59.tar.gz
sha256 ccb349b4132ed7737f25e5adebfe61f3d52dca33708df1e50352320438d1d4c2 LICENSE.md

View file

@ -0,0 +1,21 @@
################################################################################
#
# pixiewps
#
################################################################################
PIXIEWPS_VERSION = 9e5bdc6c86c8487b2a6107d5ab3559ed5c738c59
PIXIEWPS_SITE = $(call github,wiire-a,pixiewps,$(PIXIEWPS_VERSION))
PIXIEWPS_LICENSE = GPL-3.0+
PIXIEWPS_LICENSE_FILES = LICENSE.md
define PIXIEWPS_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) CC=$(TARGET_CC) -C $(@D)
endef
define PIXIEWPS_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(MAKE) DESTDIR=$(TARGET_DIR) \
PREFIX=/usr -C $(@D) install
endef
$(eval $(generic-package))