blob: 492c8e62c9df1a6ed8e978440636703f5910ad54 (
plain)
1 # Description: Bruteforce offline the WPS PIN
2 # URL: https://github.com/wiire-a/pixiewps
3 # Maintainer: Alexandr Savca, alexandrsavca89 at gmail dot com
4 # Depends on: openssl
5
6 name=pixiewps
7 version=1.4.2
8 release=1
9 source=(https://github.com/wiire-a/$name/archive/v$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 make OPENSSL=1 CFLAGS="${CFLAGS}"
15 make DESTDIR=$PKG PREFIX=/usr install
16
17 install -Dm644 $name.1 -t $PKG/usr/share/man/man1
18 }
|