blob: f3c73ae93e3cbdd9c03989592f9d85246f38e198 (
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
25
26
27
28
29
30
31
32
33
34
35
|
#!/bin/sh
NAME="iwd"
DESC="Internet Wireless Daemon"
MAKEDEPS="make "
DEPS="dbus openresolv wpa_supplicant"
PKG_VER=1.30
SOURCE="https://mirrors.edge.kernel.org/pub/linux/network/wireless/iwd-$PKG_VER.tar.gz"
ADDITIONAL="iwd.initd iwd.confd main.conf"
build () {
./configure \
--prefix=/usr \
--bindir=/usr/bin \
--sysconfdir=/etc \
--disable-static \
--disable-systemd-service \
--enable-wired \
--enable-tools
make
}
package () {
make DESTDIR=$PKG_DEST install
install -m750 -d "$PKG_DEST"/var/lib/iwd
install -m644 -D main.conf "$PKG_DEST"/etc/iwd/main.conf
install -m755 -D iwd.initd "$PKG_DEST"/etc/init.d/iwd
install -m644 -D iwd.confd "$PKG_DEST"/etc/conf.d/iwd
}
|