updated on Wed Jan 18 20:10:41 UTC 2012
[aur-mirror.git] / qtwifimon / PKGBUILD
blob4c3921ef374db76a4c4c378024e9b745dbb1991c
1 # Contributor: Your Name <youremail@domain.com>
3 pkgname=qtwifimon
4 pkgver=0.5
5 pkgrel=1
6 pkgdesc="Qt monitor for your wireless net"
7 arch=(any)
8 url="http://github.com/bielern/qtwifimon"
9 license=('GPL')
10 depends=('python' 'pyqt' 'wireless_tools')
11 makedepends=('git')
12 provides=()
13 conflicts=()
14 replaces=()
15 backup=()
16 options=(!emptydirs)
17 install=
19 _gitroot="git://github.com/bielern/qtwifimon.git"
20 _gitname="qtwifimon"
22 build() {
23   cd "$srcdir"
24   msg "Connecting to GIT server...."
26   if [ -d $_gitname ] ; then
27     cd $_gitname && git pull origin
28     msg "The local files are updated."
29   else
30     git clone $_gitroot $_gitname
31   fi
33   msg "GIT checkout done or server timeout"
36 package() {
37   #cd "$srcdir/$pkgname-$pkgver"
38   cd "$srcdir/$_gitname"
39   python setup.py install --root="$pkgdir/" --optimize=1
41   # Remember to install licenses if the license is not a common license!
42   # install -D -m644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"