summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authordelta482015-08-24 11:55:32 -0500
committerdelta482015-08-24 11:55:32 -0500
commit4b1964288f5a5dd3e8a6dd6359af9f9f72ebdd31 (patch)
tree206eb1bbbab502ed900d3fbe147d2a82cc8a2bc4
parent7a6c6b5050b6d7d8b94d48c282d70ef9e742c5bb (diff)
downloadaur-4b1964288f5a5dd3e8a6dd6359af9f9f72ebdd31.tar.gz
fix compiling issues
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD8
2 files changed, 8 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2d6e90b2db1a..b84402d018bf 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,14 @@
pkgbase = pixiewps-git
pkgdesc = Offline bruteforce of the WPS pin exploiting the low or non-existing entropy of some APs
- pkgver = r21.c849ad1
+ pkgver = r23.d917f8f
pkgrel = 1
url = https://github.com/wiire/pixiewps
arch = i686
arch = x86_64
license = GPL
depends = openssl
+ provides = pixiewps
+ conflicts = pixiewps
source = git+https://github.com/wiire/pixiewps.git
md5sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index e095e5929e37..6e957177451e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,15 +3,16 @@
pkgname=pixiewps-git
_pkgname=pixiewps
-pkgver=r21.c849ad1
+pkgver=r23.d917f8f
pkgrel=1
pkgdesc="Offline bruteforce of the WPS pin exploiting the low or non-existing entropy of some APs"
arch=('i686' 'x86_64')
url="https://github.com/wiire/pixiewps"
license=('GPL')
depends=('openssl')
+conflicts=('pixiewps')
+provides=('pixiewps')
source=(git+https://github.com/wiire/pixiewps.git)
-#source=(https://github.com/wiire/pixiewps/archive/v$pkgver.tar.gz)
md5sums=('SKIP')
pkgver() {
@@ -21,7 +22,8 @@ pkgver() {
build() {
cd "$_pkgname"/src/
- sed -e 14,15d -e '16 s/m/D&/' -i Makefile
+ # edit makefile
+ sed -e 14d -e 16d -e '15 s/install/& -Dm 755 /' -i Makefile
make
}