summaryrefslogtreecommitdiffstats
path: root/package/pixiewps
diff options
context:
space:
mode:
authorGuillaume W. Bres <guillaume.bressaix@gmail.com>2018-04-12 15:18:51 +0200
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2018-04-12 23:40:23 +0200
commitaf4361a67a4031d0729e87840988d374fcd35856 (patch)
tree509fe8a7a895d18df20aedeb9d3f8f92b0bbc817 /package/pixiewps
parent49395dc0e5cc5642670d583b9269a3f92943756d (diff)
downloadbuildroot-af4361a67a4031d0729e87840988d374fcd35856.tar.gz
buildroot-af4361a67a4031d0729e87840988d374fcd35856.zip
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>
Diffstat (limited to 'package/pixiewps')
-rw-r--r--package/pixiewps/Config.in7
-rw-r--r--package/pixiewps/pixiewps.hash3
-rw-r--r--package/pixiewps/pixiewps.mk21
3 files changed, 31 insertions, 0 deletions
diff --git a/package/pixiewps/Config.in b/package/pixiewps/Config.in
new file mode 100644
index 0000000000..97240f5c87
--- /dev/null
+++ b/package/pixiewps/Config.in
@@ -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
diff --git a/package/pixiewps/pixiewps.hash b/package/pixiewps/pixiewps.hash
new file mode 100644
index 0000000000..bb56630388
--- /dev/null
+++ b/package/pixiewps/pixiewps.hash
@@ -0,0 +1,3 @@
+# locally computed
+sha256 d3d3cf57851e3e734fb1797aa078239ef161d1cbeffc4438497d58a425ef22a2 pixiewps-9e5bdc6c86c8487b2a6107d5ab3559ed5c738c59.tar.gz
+sha256 ccb349b4132ed7737f25e5adebfe61f3d52dca33708df1e50352320438d1d4c2 LICENSE.md
diff --git a/package/pixiewps/pixiewps.mk b/package/pixiewps/pixiewps.mk
new file mode 100644
index 0000000000..95a253ab83
--- /dev/null
+++ b/package/pixiewps/pixiewps.mk
@@ -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))
OpenPOWER on IntegriCloud