void-packages/srcpkgs/wpa_supplicant/template

46 lines
1.4 KiB
Bash

# Template file for 'wpa_supplicant'
pkgname=wpa_supplicant
version=2.5
revision=6
build_wrksrc=$pkgname
short_desc="WPA/WPA2/IEEE 802.1X Supplicant"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="BSD"
homepage="http://w1.fi/wpa_supplicant/"
distfiles="http://w1.fi/releases/$pkgname-$version.tar.gz"
checksum=cce55bae483b364eae55c35ba567c279be442ed8bab5b80a3c7fb0d057b9b316
hostmakedepends="pkg-config"
makedepends="libnl3-devel libressl-devel dbus-devel readline-devel"
conf_files="/etc/${pkgname}/${pkgname}.conf"
pre_build() {
sed -i 's|/usr/local|$(PREFIX)|g' Makefile
cp -f ${FILESDIR}/config .config
sed -i 's, -u, -uq,' dbus/*.service.in
}
do_build() {
export CFLAGS+=" $(pkg-config --cflags libnl-3.0) $CPPFLAGS"
make ${makejobs} V=1 PREFIX=/usr BINDIR=/usr/bin
}
do_install() {
make PREFIX=/usr BINDIR=/usr/bin DESTDIR=${DESTDIR} install
vinstall ${FILESDIR}/${pkgname}.conf 640 etc/$pkgname
vsconf wpa_supplicant.conf
for d in 5 8; do
install -d ${DESTDIR}/usr/share/man/man${d}
done
install -m644 doc/docbook/*.5 ${DESTDIR}/usr/share/man/man5
install -m644 doc/docbook/*.8 ${DESTDIR}/usr/share/man/man8
install -d ${DESTDIR}/usr/share/dbus-1/system-services
install -m644 dbus/*.service ${DESTDIR}/usr/share/dbus-1/system-services/
vinstall dbus/dbus-${pkgname}.conf 644 etc/dbus-1/system.d ${pkgname}.conf
rm ${DESTDIR}/usr/share/man/man8/wpa_gui.8
vlicense README
vsv wpa_supplicant
}