2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-11-15 19:20:10 -07:00
repo/extra/wpa_supplicant/build

24 lines
689 B
Plaintext
Raw Normal View History

2019-06-21 02:39:04 -06:00
#!/bin/sh -e
# The wpa_supplicant package is built statically using
# libnl-tiny which is a minimal version of libnl maintained
# by OpenWRT.
2021-07-17 21:30:32 -06:00
make CC="$CC" ALL_LIBS=libnl-tiny.a -C libnl
# The CFLAGS must be set to link to the above locally built
# libnl-tiny library.
export CFLAGS="$CFLAGS -I$PWD/libnl/include -L$PWD/libnl -lnl-tiny"
export CFLAGS="$CFLAGS -static -D_GNU_SOURCE -DLIBNL1_COMPAT"
2019-06-21 02:39:04 -06:00
cd wpa_supplicant
2021-07-17 21:30:32 -06:00
make V=1 LIBDIR=/usr/lib BINDIR=/usr/bin DRV_LIBS="$CFLAGS"
make LIBDIR=/usr/lib BINDIR=/usr/bin install
mkdir -p \
"$1/usr/share/man/man5" \
"$1/usr/share/man/man8"
cp -f doc/docbook/*.5 "$1/usr/share/man/man5"
cp -f doc/docbook/*.8 "$1/usr/share/man/man8"