1
0
forked from ports/opt

iwd: update to 1.12

This commit is contained in:
Juergen Daubert 2021-02-17 10:38:16 +01:00
parent e9927f0651
commit b683f9e62e
2 changed files with 21 additions and 20 deletions

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/R0B5EE8qswXCBvc1aV0TMOmzsKMsxbcNdUDyHv9v/QQNezuE+Gn6JXHwUENJEXfZTrAXmx9dUPVwhPEMvzNBwg=
SHA256 (Pkgfile) = 3ff02fbb00ad6ce55e42d7ae3b831249c7e987078d3de8178ea4f49269261525
RWSE3ohX2g5d/chM2t4LPg0TTEZcTBTPqg4BR7OYpbVS1AaaYhwnkqhkGSne0boYjBMlV/xdA5TyEuesmIQ77qtgdjctxVAISQY=
SHA256 (Pkgfile) = 4f45b416e1d09386e437549c115edded036fe9fffc2bde24ea1986ee036bb5c2
SHA256 (.footprint) = 0aa5e4078b6db24985866855c67c997f4461f150c195a2c1b45ab95f5f9fd1fb
SHA256 (iwd-1.11.tar.xz) = db854f569cfa94dc32120d8cf2e7d483a16679f238e1a4794837d0e455ea7aa9
SHA256 (iwd-1.12.tar.xz) = 4238c394d35ee6e99291009424d5530183aa5367c6f4f5349a95a56c5c94a211
SHA256 (iwd) = 6500824fc8993b22e61be415b3ae9bc971b6eef56d3fb4c60255f1065cf2eac6

View File

@ -1,29 +1,30 @@
# Description: Wireless daemon for Linux
# URL: https://iwd.wiki.kernel.org/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: readline dbus
# URL: https://iwd.wiki.kernel.org/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: readline dbus
name=iwd
version=1.11
version=1.12
release=1
source=(https://www.kernel.org/pub/linux/network/wireless/$name-$version.tar.xz
iwd)
iwd)
build() {
cd $name-$version
cd $name-$version
./configure --prefix=/usr \
--libexecdir=/usr/sbin \
--localstatedir=/var \
--sysconfdir=/etc \
--disable-systemd-service
./configure \
--prefix=/usr \
--libexecdir=/usr/sbin \
--localstatedir=/var \
--sysconfdir=/etc \
--disable-systemd-service
make
make DESTDIR=$PKG install
make
make DESTDIR=$PKG install
install -d -m 0700 $PKG/var/lib/iwd
install -d -m 0700 $PKG/etc/iwd
install -d -m 0700 $PKG/var/lib/iwd
install -d -m 0700 $PKG/etc/iwd
# rc script
install -D -m 0755 $SRC/iwd $PKG/etc/rc.d/iwd
# rc script
install -D -m 0755 $SRC/iwd $PKG/etc/rc.d/iwd
}