From 19def8c4d898d37041a9f48c3fd44449926d7b59 Mon Sep 17 00:00:00 2001 From: wiire-a Date: Tue, 5 Dec 2017 11:46:38 +0100 Subject: [PATCH] Removed OpenWrt Makefile The package is now available in the official OpenWrt repository. --- Makefile | 32 -------------------------------- README.md | 2 +- version.mk | 4 ---- 3 files changed, 1 insertion(+), 37 deletions(-) delete mode 100644 Makefile delete mode 100644 version.mk diff --git a/Makefile b/Makefile deleted file mode 100644 index 78602e9..0000000 --- a/Makefile +++ /dev/null @@ -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)) diff --git a/README.md b/README.md index 7417ed8..fa8c223 100644 --- a/README.md +++ b/README.md @@ -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). diff --git a/version.mk b/version.mk deleted file mode 100644 index d49312e..0000000 --- a/version.mk +++ /dev/null @@ -1,4 +0,0 @@ -PKG_NAME:=pixiewps -PKG_VERSION:=1.4 -PKG_RELEASE:=2 -PKG_LICENSE:=GPL-3.0+