mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
49 lines
1.2 KiB
Bash
49 lines
1.2 KiB
Bash
SUMMARY="A WPA Supplicant with support for WPA and WPA2"
|
|
DESCRIPTION="
|
|
wpa_supplicant is a WPA Supplicant for Linux, BSD, Mac OS X, and Windows with \
|
|
support for WPA and WPA2 (IEEE 802.11i / RSN). It is suitable for both \
|
|
desktop/laptop computers and embedded systems. Supplicant is the IEEE \
|
|
802.1X/WPA component that is used in the client stations. It implements key \
|
|
negotiation with a WPA Authenticator and it controls the roaming and IEEE \
|
|
802.11 authentication/association of the wlan driver."
|
|
HOMEPAGE="http://hostap.epitest.fi/wpa_supplicant/"
|
|
COPYRIGHT="2003-2010 Jouni Malinen"
|
|
LICENSE="BSD (2-clause)
|
|
GNU GPL v2"
|
|
REVISION="2"
|
|
SOURCE_URI="http://hostap.epitest.fi/releases/wpa_supplicant-0.7.3.tar.gz"
|
|
CHECKSUM_SHA256="d0cd50caa85346ccc376dcda5ed3c258eef19a93b3cade39d25760118ad59443"
|
|
SOURCE_DIR="wpa_supplicant-${portVersion}/wpa_supplicant"
|
|
PATCHES="wpa_supplicant-0.7.3.patch"
|
|
|
|
ARCHITECTURES="x86_gcc2 ?x86"
|
|
|
|
PROVIDES="
|
|
wpa_supplicant = $portVersion compat >= 0.7
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
openssl >= 1.0.0
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
openssl >= 1.0.0
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
cmd:gcc
|
|
cmd:ld
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
CFLAGS="-MMD -O2 -Wall" make wpa_supplicant
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $binDir
|
|
cp -v wpa_supplicant $binDir
|
|
}
|