void-packages/srcpkgs/hostapd/template

45 lines
1.2 KiB
Plaintext
Raw Normal View History

2013-01-14 09:59:10 +00:00
# Template file for 'hostapd'
pkgname=hostapd
2014-10-12 04:48:04 +00:00
version=2.3
revision=5
2013-01-14 09:59:10 +00:00
build_wrksrc=${pkgname}
2014-10-27 17:19:27 +00:00
build_options="systemd"
2014-02-14 09:45:23 +00:00
hostmakedepends="pkg-config"
makedepends="libnl3-devel libressl-devel>=2.1.4"
2013-01-14 09:59:10 +00:00
short_desc="IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator"
maintainer="Juan RP <xtraeme@gmail.com>"
license="BSD"
2013-01-14 09:59:10 +00:00
homepage="http://w1.fi/hostapd/"
distfiles="http://w1.fi/releases/${pkgname}-${version}.tar.gz"
2014-10-12 04:48:04 +00:00
checksum=c94c2b76876fad4c80a1063a06f958a2189ba5003475016fa7658a1ca49bb4df
2013-01-14 09:59:10 +00:00
2014-06-06 11:56:55 +00:00
do_configure() {
2013-01-14 09:59:10 +00:00
cp -f ${FILESDIR}/config .config
sed -i 's#/etc/hostapd#/etc/hostapd/hostapd#' hostapd.conf
2014-06-06 11:56:55 +00:00
}
do_build() {
export CFLAGS+=" $(pkg-config --cflags libnl-3.0)"
2013-01-14 09:59:10 +00:00
make ${makejobs}
}
do_install() {
2014-10-27 17:19:27 +00:00
if [ "$build_option_systemd" ]; then
vinstall ${FILESDIR}/hostapd.service 644 usr/lib/systemd/system
fi
vsv hostapd
2013-01-14 09:59:10 +00:00
vmkdir usr/bin
install -t ${DESTDIR}/usr/bin hostapd hostapd_cli
2014-06-06 11:56:55 +00:00
vmkdir usr/share/examples/hostapd
install -m644 -t ${DESTDIR}/usr/share/examples/hostapd \
2013-01-14 09:59:10 +00:00
hostapd.{accept,conf,deny,eap_user,radius_clients,sim_db,vlan,wpa_psk} \
wired.conf hlr_auc_gw.milenage_db
2014-10-27 17:19:27 +00:00
vinstall hostapd.conf 644 etc/hostapd
2013-01-14 09:59:10 +00:00
vinstall hostapd.8 644 usr/share/man/man8
vinstall hostapd_cli.1 644 usr/share/man/man1
2014-10-27 17:19:27 +00:00
vlicense ${wrksrc}/COPYING
2013-01-14 09:59:10 +00:00
}