# Recipe for version 2.11 by Nuc1eoN, on Thu 10 Oct 2024 03:57:14 AM CEST # Recipe (MakeRecipe) for WPA_Supplicant by Jonas Karlsson , on Sun Jul 24 09:52:31 CEST 2.115 compile_version=1.9.0 url="https://w1.fi/releases/wpa_supplicant-2.11.tar.gz" file_size=3841433 file_md5=72a4a00eddb7a499a58113c3361ab094 recipe_type=makefile dir=wpa_supplicant-2.11/wpa_supplicant build_target="all" #using_qt4() { # build_target="${build_target} wpa_gui-qt4" #} environment=( QMAKESPEC="$qt_path/mkspecs/linux-g++" ) make_variables=( "DESTDIR=$target" # if these are not set, files are installed in /usr/local/... which SymlinkProgram misses "BINDIR=/sbin" "LIBDIR=/lib" ) pre_build() { if [ ! -e .config ]; then cp defconfig .config for opt in DEBUG_FILE EAP_SIM EAP_AKA EAP_PSK EAP_PAX EAP_AKA_PRIME WPS PCSC IPV6 LIBNL32 READLINE \ CTRL_IFACE_DBUS CTRL_IFACE_DBUS_NEW CTRL_IFACE_DBUS_INTRO do if grep -q "^#CONFIG_${opt}=y" .config then GrepReplace -B "^#CONFIG_${opt}=y" "CONFIG_${opt}=y" .config else echo "CONFIG_${opt}=y" >> .config fi done echo "CFLAGS += -I$goboHeaders/libnl3" >> .config Log_Error You may alter wpa_supplicant build time configuration by modifying $(pwd)/.config fi } #using_qt4_pre_link() { # cp wpa_gui-qt4/wpa_gui $target/sbin #}