mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
19 lines
522 B
Bash
19 lines
522 B
Bash
|
# Maintainer: Daniel Isenmann <daniel@archlinux.org>
|
||
|
|
||
|
pkgname=python-iwscan
|
||
|
pkgver=20090609
|
||
|
pkgrel=1
|
||
|
pkgdesc="A Python interface to iwlist, using the iwlib library"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://projects.otaku42.de/browser/python-iwscan"
|
||
|
license=('LGPL')
|
||
|
depends=('python' 'wireless_tools')
|
||
|
source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-20090609.tar.gz)
|
||
|
md5sums=('30fbe8ad3b07e67c1c35db2de16077d8')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}
|
||
|
python setup.py build
|
||
|
python setup.py install --root=${pkgdir}
|
||
|
}
|