Last active
December 30, 2015 20:39
-
-
Save elken/7881880 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=pytacle | |
pkgver=alpha2 | |
pkgrel=1 | |
pkgdesc="Automates the task of sniffing GSM frames" | |
groups=(blackarch blackarch-sniffer) | |
arch=('i686' 'x86_64') | |
url='http://packetstormsecurity.com/files/124299/pytacle-alpha2.tar.gz' | |
license=('GPL3') | |
depends=('pygtk') | |
source=(http://packetstorm.foofus.com/wireless/pytacle-${pkgver}.tar.gz | |
py2.patch) | |
md5sums=('5468c3e07706a551b3141dbab8b002e3' | |
'86e2e1a4a03b32ceb8aa19a6bc71d2a3') | |
prepare() { | |
cd "$srcdir/$pkgname-$pkgver" | |
patch -p1 pytacle.py "$srcdir/py2.patch" | |
} | |
package() { | |
cd "$srcdir/$pkgname-$pkgver" | |
install -Dm755 pytacle.py "$pkgdir/usr/bin/pytacle" | |
install -Dm644 mcc_mnc.py "$pkgdir/usr/lib/python2.7/pytacle" | |
install -m644 windows.glade "$pkgdir/usr/lib/python2.7/pytacle" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment