mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
19 lines
567 B
Bash
19 lines
567 B
Bash
|
# $Id: PKGBUILD 32197 2009-03-29 14:56:14Z thomas $
|
||
|
pkgname=wpa_supplicant_gui
|
||
|
pkgver=0.6.9
|
||
|
pkgrel=1
|
||
|
pkgdesc="A qt frontend to wpa_supplicant"
|
||
|
arch=('i686' 'x86_64')
|
||
|
depends=('qt>=4' "wpa_supplicant=$pkgver")
|
||
|
license="GPL"
|
||
|
url="http://hostap.epitest.fi/wpa_supplicant"
|
||
|
source=(http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz)
|
||
|
md5sums=('0efb8fcedf0a8acf6f423dfdb0658fdd')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/wpa_supplicant-$pkgver/wpa_supplicant/wpa_gui-qt4
|
||
|
qmake || return 1
|
||
|
make || return 1
|
||
|
install -D -m755 wpa_gui $startdir/pkg/usr/sbin/wpa_gui
|
||
|
}
|