Commit | Line | Data |
---|---|---|
209feeb0 H |
1 | # Contributor: Thomas Mudrunka <harvie@@email..cz> |
2 | # Original PKGBUILD contributed by: Erwin Van de Velde <erwin.vandevelde@gmail.com> | |
3 | ||
4 | pkgname=swscanner | |
5 | pkgver=0.2.2 | |
6 | pkgrel=2 | |
7 | pkgdesc="SWScanner is a NetStumbler like wireless network (wifi/802.11) scanner." | |
8 | arch=('i686' 'x86_64') | |
9 | url="http://www.swscanner.org" | |
10 | license="GPL" | |
11 | depends=(qt libidn acl libart-lgpl fam shapelib kdelibs kdelibs3) | |
12 | builddepends=( | |
13 | 'glibc' 'gcc' | |
14 | ) | |
15 | source=(http://www.swscanner.org/descargas/$pkgname-$pkgver.tar.gz) | |
16 | md5sums=('6337ca79f295b42a256790f0133b7730') | |
17 | ||
18 | build() { | |
19 | cd ${srcdir}/swscanner-${pkgver} | |
20 | source /etc/profile.d/qt*.sh | |
21 | ./configure --with-extra-includes=/usr/include/libshp --without-arts && make || return 1 | |
22 | #./configure --without-arts && make | |
23 | make DESTDIR=${pkgdir}/usr/ install | |
24 | } |