blob: ace354f5cf3bf452751535f50619cc482a103312 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=iw
pkgver=5.3
pkgrel=0
pkgdesc="nl80211 based CLI configuration utility for wireless devices"
url="https://wireless.kernel.org/en/users/Documentation/iw"
arch="all"
license="ISC"
makedepends="libnl3-dev linux-headers"
subpackages="$pkgname-doc"
source="https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.xz"
options="!check" # no test suite
build () {
cd "$builddir"
make V=1
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
sha512sums="986fb7cf37cc3cab7b4058b5b73fadf1dc101fa764a144c9e4fc400d2327429df53fefbd4ea9ee63821e793a4118d468012a857800521ecf9973a7b9428229c9 iw-5.3.tar.xz"
|