]> git.ipfire.org Git - ipfire-3.x.git/blame - wpa_supplicant/wpa_supplicant.nm
wpa_supplicant: Allow systemd to reload the daemon
[ipfire-3.x.git] / wpa_supplicant / wpa_supplicant.nm
CommitLineData
75e38195 1###############################################################################
802ea3af
MT
2# IPFire.org - An Open Source Firewall Solution #
3# Copyright (C) - IPFire Development Team <info@ipfire.org> #
75e38195
MT
4###############################################################################
5
802ea3af 6name = wpa_supplicant
909e15a8 7version = 2.6
929f6938 8release = 2
75e38195 9
802ea3af
MT
10groups = Sytem/Base
11url = http://hostap.epitest.fi/releases/
12license = BSD
13summary = WPA/WPA2/IEEE 802.1X Supplicant.
75e38195 14
802ea3af
MT
15description
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
75e38195 20 authentication/association of the wlan driver.
802ea3af
MT
21end
22
23source_dl = http://hostap.epitest.fi/releases/
24
25build
26 requires
909e15a8
MT
27 libnl3-devel
28 ncurses-devel
802ea3af
MT
29 openssl-devel
30 pkg-config
909e15a8 31 readline-devel
802ea3af
MT
32 end
33
909e15a8
MT
34 prepare_cmds
35 cp -v %{DIR_APP}/wpa_supplicant/{defconfig,.config}
36
37 sed -i %{DIR_APP}/wpa_supplicant/.config \
38 -e "s/#CONFIG_READLINE=y/CONFIG_READLINE=y/" \
39 -e "s/#CONFIG_LIBNL32=y/CONFIG_LIBNL32=y/"
40
41 (
42 # Enable 802.11s mesh networking
43 echo "CONFIG_MESH=y"
44 echo "CONFIG_SAE=y"
45
46 echo "CONFIG_IEEE80211W=y"
47 ) >> %{DIR_APP}/wpa_supplicant/.config
48 end
802ea3af 49
909e15a8 50 build
802ea3af
MT
51 # Build wpa_supplicant
52 cd %{DIR_APP}/wpa_supplicant && make %{PARALLELISMFLAGS}
53 end
54
55 install
56 mkdir -pv %{BUILDROOT}/etc/wpa_supplicant
57 mkdir -pv %{BUILDROOT}/usr/sbin
58
59 # Install config file
60 install -D -m 0600 %{DIR_SOURCE}/wpa_supplicant.conf %{BUILDROOT}/etc/wpa_supplicant
61
62 # Install binaries
63 install -m 0755 %{DIR_APP}/wpa_supplicant/wpa_passphrase %{BUILDROOT}/usr/sbin
64 install -m 0755 %{DIR_APP}/wpa_supplicant/wpa_cli %{BUILDROOT}/usr/sbin
65 install -m 0755 %{DIR_APP}/wpa_supplicant/wpa_supplicant %{BUILDROOT}/usr/sbin
66 end
67end
68
69packages
70 package %{name}
6205da65 71 requires += network >= 1:005
909e15a8
MT
72
73 script postin
74 /usr/bin/systemctl daemon-reload >/dev/null 2>&1 || :
75 end
76
77 script postun
78 /usr/bin/systemctl daemon-reload >/dev/null 2>&1 || :
79 end
80
81 script postup
82 /usr/bin/systemctl daemon-reload >/dev/null 2>&1 || :
83 end
6205da65 84 end
1f9bc2f0
MT
85
86 package %{name}-debuginfo
87 template DEBUGINFO
88 end
802ea3af 89end