Removed OpenWrt Makefile

The package is now available in the official OpenWrt repository.
This commit is contained in:
wiire-a 2017-12-05 11:46:38 +01:00
parent d6e760af7b
commit 19def8c4d8
3 changed files with 1 additions and 37 deletions

View File

@ -1,32 +0,0 @@
include $(TOPDIR)/rules.mk
include version.mk
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
define Package/pixiewps
SECTION:=net
CATEGORY:=Network
SUBMENU:=wireless
TITLE:=An offline WPS bruteforce utility
URL:=https://github.com/wiire/pixiewps
DEPENDS:=+libpthread
endef
define Package/pixiewps/description
An offline WPS bruteforce utility
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
$(CP) ./src/* $(PKG_BUILD_DIR)/
endef
define Package/pixiewps/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/pixiewps $(1)/usr/bin/
endef
$(eval $(call BuildPackage,pixiewps))

View File

@ -127,7 +127,7 @@ Pixiewps can be compiled and installed on a wide variety of platforms including
On Windows it can be compiled with [MinGW](http://www.mingw.org/). Be sure to have installed phtread support.
## Versioning convention
The version numbering is in the form `1.x.y`, where `x` usually indicates a major release, and `y` a minor release, typically bug fixing or other small changes. Every major release starts with `y = 0`. The only exceptions are OpenWrt builds where the attribute `PKG_RELEASE` starts from 1, see `version.mk`. For instance, release `1.4.0` would be indicated as package `1.4-1` in OpenWrt when built.
The version numbering is in the form `1.x.y`, where `x` usually indicates a major release, and `y` a minor release, typically bug fixing or other small changes. Every major release starts with `y = 0` and should be considered unstable in the first hours of publishing, even if not marked as such.
For a list of changes between one release and the previous refer to [CHANGELOG](https://github.com/wiire-a/pixiewps/blob/master/CHANGELOG.md).

View File

@ -1,4 +0,0 @@
PKG_NAME:=pixiewps
PKG_VERSION:=1.4
PKG_RELEASE:=2
PKG_LICENSE:=GPL-3.0+