e054a3cf3a
Broken from c6fda28441
, (wpa_supplicant: add security patches.,
2021-02-03)
40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# Template file for 'hostapd'
|
|
pkgname=hostapd
|
|
version=2.9
|
|
revision=2
|
|
build_wrksrc="$pkgname"
|
|
conf_files="/etc/hostapd/hostapd.conf"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="libnl3-devel libressl-devel"
|
|
short_desc="IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="BSD-3-Clause"
|
|
homepage="http://w1.fi/hostapd/"
|
|
distfiles="http://w1.fi/releases/${pkgname}-${version}.tar.gz"
|
|
checksum=881d7d6a90b2428479288d64233151448f8990ab4958e0ecaca7eeb3c9db2bd7
|
|
patch_args=-Np1
|
|
|
|
do_configure() {
|
|
cp -f ${FILESDIR}/config .config
|
|
sed -i 's#/etc/hostapd#/etc/hostapd/hostapd#' hostapd.conf
|
|
}
|
|
do_build() {
|
|
export CFLAGS+=" $(pkg-config --cflags libnl-3.0)"
|
|
make ${makejobs}
|
|
}
|
|
do_install() {
|
|
vsv hostapd
|
|
|
|
vmkdir usr/bin
|
|
install -t ${DESTDIR}/usr/bin hostapd hostapd_cli
|
|
|
|
vmkdir usr/share/examples/hostapd
|
|
install -m644 -t ${DESTDIR}/usr/share/examples/hostapd \
|
|
hostapd.{accept,conf,deny,eap_user,radius_clients,sim_db,vlan,wpa_psk} \
|
|
wired.conf hlr_auc_gw.milenage_db
|
|
|
|
vinstall hostapd.conf 644 etc/hostapd
|
|
vman hostapd.8
|
|
vman hostapd_cli.1
|
|
vlicense ${wrksrc}/COPYING
|
|
}
|