# Description: User space IEEE 802.1X/WPA supplicant (wireless client) 
# URL: https://hostap.epitest.fi/wpa_supplicant/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: openssl readline libnl dbus

name=wpa_supplicant
version=2.11
release=1
source=(https://w1.fi/releases/$name-$version.tar.gz
    wpa_supplicant wlan)

build() {
    cd $name-$version/$name

    cp defconfig .config
    echo "CONFIG_READLINE=y
        CONFIG_LIBNL32=y
        CONFIG_CTRL_IFACE_DBUS_NEW=y
        CFLAGS+=-I/usr/include/libnl3" >> .config

    make BINDIR=/usr/sbin LIBDIR=/usr/lib

    install -d $PKG/{usr/sbin,usr/share/man/man{8,5},etc}
    install -m 0755 wpa_{cli,passphrase,supplicant} $PKG/usr/sbin
    install -m 0644 doc/docbook/wpa_{background,cli,passphrase,supplicant}.8 $PKG/usr/share/man/man8
    install -m 0644 doc/docbook/wpa_supplicant.conf.5 $PKG/usr/share/man/man5

    # config
    echo -e "ctrl_interface=/run/wpa_supplicant\n" > $PKG/etc/wpa_supplicant.conf
    chmod 0600 $PKG/etc/wpa_supplicant.conf

    # rc script
    install -D -m 0755 $SRC/wlan $PKG/etc/rc.d/wlan
    install -m 0755 $SRC/wpa_supplicant $PKG/etc/rc.d

    # dbus
    install -d $PKG/{usr/share/dbus-1/system-services,etc/dbus-1/system.d}
    install -m 0644 dbus/fi.w1.wpa_supplicant1.service $PKG/usr/share/dbus-1/system-services/
    install -m 0644 dbus/dbus-wpa_supplicant.conf $PKG/etc/dbus-1/system.d/wpa_supplicant.conf
}
