void-packages/srcpkgs/hostapd/template

40 lines
1.1 KiB
Bash
Raw Normal View History

2013-01-14 09:59:10 +00:00
# Template file for 'hostapd'
pkgname=hostapd
2015-10-12 08:05:33 +00:00
version=2.5
revision=1
2013-01-14 09:59:10 +00:00
build_wrksrc=${pkgname}
2015-07-03 07:56:35 +00:00
conf_files="/etc/hostapd/hostapd.conf"
2014-02-14 09:45:23 +00:00
hostmakedepends="pkg-config"
makedepends="libnl3-devel libressl-devel"
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@voidlinux.eu>"
license="BSD"
2013-01-14 09:59:10 +00:00
homepage="http://w1.fi/hostapd/"
distfiles="http://w1.fi/releases/${pkgname}-${version}.tar.gz"
2015-10-12 08:05:33 +00:00
checksum=8e272d954dc0d7026c264b79b15389ec2b2c555b32970de39f506b9f463ec74a
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
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
vman hostapd.8
vman hostapd_cli.1
2014-10-27 17:19:27 +00:00
vlicense ${wrksrc}/COPYING
2013-01-14 09:59:10 +00:00
}