21 lines
468 B
Bash
21 lines
468 B
Bash
|
# Maintainer: Sebastian Hugentobler <shu@vanwa.ch>
|
||
|
|
||
|
pkgname=wifi-connect
|
||
|
pkgver=0.1.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="Connect to a wifi network with nmcli, getting the password from pass."
|
||
|
arch=("any")
|
||
|
url="https://code.vanwa.ch"
|
||
|
license=('MIT')
|
||
|
depends=("networkmanager" "pass")
|
||
|
source=(
|
||
|
"wifi-connect"
|
||
|
)
|
||
|
sha256sums=("e6709ad775505b9485243d32f2e440a5cc0e96a875174cd8438024b4e0d5bcf2")
|
||
|
|
||
|
package() {
|
||
|
cd "$srcdir/"
|
||
|
|
||
|
install -Dm 755 wifi-connect "$pkgdir/usr/bin/wifi-connect"
|
||
|
}
|