mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
27 lines
740 B
Bash
27 lines
740 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Andrea Scarpino <bash.lnx@gmail.com>
|
|
# Contributor: amw2320@insightbb.com
|
|
# Contributor: Robert Emil Berge <filoktetes@linuxophic.org>
|
|
|
|
pkgname=wlassistant
|
|
pkgver=0.5.7
|
|
pkgrel=2
|
|
pkgdesc="Tool to detect and configure wireless networks"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
url="http://wlassistant.sourceforge.net"
|
|
depends=('kdelibs3' 'python')
|
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('4623b498ac42839d08c631c500f18f8b')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
. /etc/profile.d/qt3.sh
|
|
. /etc/profile.d/kde3.sh
|
|
export PATH=$QTDIR/bin:$PATH
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install
|
|
}
|