opt/wpa_supplicant/Pkgfile

23 lines
834 B
Plaintext
Raw Normal View History

2006-04-17 14:56:12 +02:00
# Description: User space IEEE 802.1X/WPA supplicant (wireless client)
# URL: http://hostap.epitest.fi/wpa_supplicant/
2008-07-11 09:29:19 +02:00
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
2009-02-20 15:10:55 +01:00
# Depends on: openssl ncurses readline
2006-04-17 14:56:12 +02:00
name=wpa_supplicant
2009-03-24 11:12:21 +01:00
version=0.6.9
2007-12-05 17:14:47 +01:00
release=1
2006-04-17 14:56:12 +02:00
source=(http://hostap.epitest.fi/releases/$name-$version.tar.gz)
build () {
2009-02-20 15:10:55 +01:00
cd $name-$version/$name
2006-04-17 14:56:12 +02:00
cp defconfig .config
echo "CONFIG_READLINE=y" >> .config
make
2007-11-22 16:20:01 +01:00
install -d $PKG/{usr/sbin,usr/man/man{8,5},etc}
2006-04-17 14:56:12 +02:00
install wpa_{cli,passphrase,supplicant} $PKG/usr/sbin
2009-02-20 15:10:55 +01:00
install doc/docbook/wpa_{background,cli,passphrase,supplicant}.8 $PKG/usr/man/man8
install doc/docbook/wpa_supplicant.conf.5 $PKG/usr/man/man5
2006-04-17 14:56:12 +02:00
echo -e "ctrl_interface=/var/run/wpa_supplicant\n" > $PKG/etc/wpa.conf
chmod 0600 $PKG/etc/wpa.conf
}