blob: 5be42580f4eebdaabc6af2fae03e7ec828ebd18e (
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
|
#!/bin/sh -e
for patch in *.patch; do
patch -p1 < "$patch"
done
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/bin \
--localstatedir=/var \
--disable-systemd-service \
--enable-pie \
--enable-dbus-policy \
--enable-wired \
PKG_CONFIG="pkgconf --static"
# Don't use systemd as the default name resolver.
clsed 's|method_name = "systemd"|method_name = "resolvconf"|' src/resolve.c
# Update the manual page to reflect upon the change.
clsed '/If not specified/s/systemd/resolvconf/' src/iwd.config.5
make LDFLAGS=-all-static
make DESTDIR="$1" install
clsv -d "$1" iwd.run ead.run
|