39 lines
1.2 KiB
Bash
39 lines
1.2 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=iw
|
|
pkgver=6.9
|
|
pkgrel=01
|
|
pkgdesc='nl80211 based CLI configuration utility for wireless devices'
|
|
url='https://wireless.wiki.kernel.org/en/users/documentation/iw'
|
|
depends=('libnl')
|
|
makedepends=('linux-api-headers')
|
|
source=("https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar."{xz,sign})
|
|
|
|
build() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=('GPL')
|
|
|
|
validpgpkeys=('C0EBC440F6DA091C884D8532E0F373F37BF9099A') # Johannes Berg
|
|
|
|
sha256sums=(3f2db22ad41c675242b98ae3942dbf3112548c60a42ff739210f2de4e98e4894 # iw-6.9.tar.xz
|
|
a7c7d3c0ef50c2ad00788bcd7d89e6b1b134c5da127f34f125b912a46137dd29) # iw-6.9.tar.sign
|
|
|
|
## 181a75675871b79ac868e4fad1a60aff2cb59a218f7ebf12d1f1f6394c269d0f iw-6.9-01-x86_64.pkg.tar.lz
|
|
|