mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37:10 +01:00
39 lines
933 B
Text
Executable file
39 lines
933 B
Text
Executable file
VERSION="2.7"
|
|
SRCDIR="hostapd-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.gz"
|
|
URL="https://w1.fi/releases/"
|
|
SHA256SUM="21b0dda3cc3abe75849437f6b9746da461f88f0ea49dd621216936f87440a141"
|
|
DEPENDS="libnl3-dev openssl-dev toolchain"
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
cp -r ${1}/* ${PKGBUILDDIR}
|
|
cp "$SCRIPTDIR/pkg/$PKGNAME/config" "$PKGBUILDDIR/hostapd/.config"
|
|
|
|
local cflags="-O2 -Os"
|
|
local ldflags=""
|
|
|
|
if [ "x$TC_HARDENING" = "xyes" ]; then
|
|
cflags="$cflags -fstack-protector-all"
|
|
ldflags="$ldflags -z noexecstack -z relro -z now"
|
|
fi
|
|
|
|
CFLAGS="-MMD -O2 $cflags" \
|
|
LDFLAGS="$ldflags" \
|
|
make CC=${TARGET}-gcc -C hostapd -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
mkdir -p "$PKGDEPLOYDIR/etc"
|
|
cat_file_override "hostapd.conf" > "$PKGDEPLOYDIR/etc/hostapd.conf"
|
|
|
|
make -C hostapd BINDIR=/bin DESTDIR="$PKGDEPLOYDIR" install
|
|
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
|
|
}
|
|
|
|
check_update() {
|
|
check_update_simple "$URL" "hostapd-" "tar.gz"
|
|
}
|