]> git.ipfire.org Git - ipfire-3.x.git/blob - wpa_supplicant/wpa_supplicant.nm
json-c: Update to version 0.17-20230812
[ipfire-3.x.git] / wpa_supplicant / wpa_supplicant.nm
1 ###############################################################################
2 # IPFire.org - An Open Source Firewall Solution #
3 # Copyright (C) - IPFire Development Team <info@ipfire.org> #
4 ###############################################################################
5
6 name = wpa_supplicant
7 version = 2.10
8 release = 1
9
10 groups = Sytem/Base
11 url = https://w1.fi/wpa_supplicant/
12 license = BSD
13 summary = WPA/WPA2/IEEE 802.1X Supplicant
14
15 description
16 wpa_supplicant is a WPA Supplicant for Linux, BSD and Windows with support
17 for WPA and WPA2 (IEEE 802.11i / RSN). Supplicant is the IEEE 802.1X/WPA
18 component that is used in the client stations. It implements key negotiation
19 with a WPA Authenticator and it controls the roaming and IEEE 802.11
20 authentication/association of the wlan driver.
21 end
22
23 source_dl = https://w1.fi/releases/
24
25 build
26 requires
27 dbus-devel
28 libnl3-devel >= 3.8.0
29 ncurses-devel
30 openssl-devel
31 pkg-config
32 readline-devel
33 end
34
35 prepare_cmds
36 cp -v %{DIR_APP}/wpa_supplicant/{defconfig,.config}
37
38 sed -i %{DIR_APP}/wpa_supplicant/.config \
39 -e "s/#CONFIG_READLINE=y/CONFIG_READLINE=y/" \
40 -e "s/#CONFIG_LIBNL32=y/CONFIG_LIBNL32=y/"
41
42 (
43 # Enable 802.11s mesh networking
44 echo "CONFIG_MESH=y"
45 echo "CONFIG_SAE=y"
46
47 echo "CONFIG_IEEE80211W=y"
48 ) >> %{DIR_APP}/wpa_supplicant/.config
49 end
50
51 build
52 # Build wpa_supplicant
53 cd %{DIR_APP}/wpa_supplicant && make %{PARALLELISMFLAGS}
54 end
55
56 install
57 mkdir -pv %{BUILDROOT}%{sysconfdir}/wpa_supplicant
58 mkdir -pv %{BUILDROOT}%{sbindir}
59 mkdir -pv %{BUILDROOT}%{unitdir}
60
61 # Install config file
62 install -D -m 0600 %{DIR_SOURCE}/wpa_supplicant.conf %{BUILDROOT}/etc/wpa_supplicant
63
64 # Install binaries
65 install -m 0755 %{DIR_APP}/wpa_supplicant/wpa_passphrase %{BUILDROOT}%{sbindir}
66 install -m 0755 %{DIR_APP}/wpa_supplicant/wpa_cli %{BUILDROOT}%{sbindir}
67 install -m 0755 %{DIR_APP}/wpa_supplicant/wpa_supplicant %{BUILDROOT}%{sbindir}
68
69 # Install systemd unit file
70 install -v -m 644 wpa_supplicant/systemd/wpa_supplicant.service \
71 %{BUILDROOT}%{unitdir}
72 end
73 end
74
75 packages
76 package %{name}
77 script postin
78 /usr/bin/systemctl daemon-reload >/dev/null 2>&1 || :
79 end
80
81 script postun
82 /usr/bin/systemctl daemon-reload >/dev/null 2>&1 || :
83 end
84
85 script postup
86 /usr/bin/systemctl daemon-reload >/dev/null 2>&1 || :
87 end
88 end
89
90 package %{name}-debuginfo
91 template DEBUGINFO
92 end
93 end