diff options
author | root <root@rshg054.dnsready.net> | 2012-08-31 00:04:43 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-08-31 00:04:43 +0000 |
commit | 68cdc08aec92abf91448a542e06fabbedbb583bf (patch) | |
tree | 2c42e2f29a6162e0cb5ff3db8f0b46277ab4ed90 /testing/iw | |
parent | dba5b0127d9f00a13c489f0f5893481cbe7d429b (diff) |
Fri Aug 31 00:04:43 UTC 2012
Diffstat (limited to 'testing/iw')
-rw-r--r-- | testing/iw/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/iw/PKGBUILD b/testing/iw/PKGBUILD new file mode 100644 index 000000000..1e7cbe073 --- /dev/null +++ b/testing/iw/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 165785 2012-08-29 23:06:26Z thomas $ +# Maintainer: Thomas Bächler <thomas@archlinux.org> + +pkgname=iw +pkgver=3.6 +pkgrel=1 +pkgdesc="nl80211 based CLI configuration utility for wireless devices" +arch=("i686" "x86_64") +url="http://wireless.kernel.org/en/users/Documentation/iw" +license=("GPL") +depends=("libnl") +makedepends=("linux-api-headers") +source=(http://wireless.kernel.org/download/$pkgname/$pkgname-$pkgver.tar.bz2) +sha256sums=('df11036ac11df31f44083da962a6e9c74bdea7c01c596c4b5840f948cdb6c857') + +build() { + cd "$srcdir"/$pkgname-$pkgver + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" install +} |