wok view wpa_supplicant/receipt @ rev 3438

fix typo in wpa_supplicant (v0.6.9)
author Rohit Joshi <jozee@slitaz.org>
date Sat Jun 13 11:24:13 2009 +0000 (2009-06-13)
parents 9cc8e4a89170
children d80bbe920b1e
line source
1 # SliTaz package receipt.
3 PACKAGE="wpa_supplicant"
4 VERSION="0.6.9"
5 CATEGORY="utilities"
6 SHORT_DESC="WPA Supplicant with support for WPA and WPA2"
7 MAINTAINER="0dddba11@googlemail.com"
8 DEPENDS="openssl slitaz-base-files"
9 BUILD_DEPENDS="openssl-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://hostap.epitest.fi/wpa_supplicant/"
12 WGET_URL="http://hostap.epitest.fi/releases/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src/$PACKAGE
18 cp -a ./defconfig ./.config
19 make
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin
26 mkdir -p $fs/etc
27 cp -a $src/$PACKAGE/wpa_cli $fs/usr/bin
28 cp -a $src/$PACKAGE/wpa_supplicant $fs/usr/bin
29 cp -a $src/$PACKAGE/wpa_passphrase $fs/usr/bin
30 cp -a $src/$PACKAGE/wpa_supplicant.conf $fs/etc
32 # Startup script
33 cp -a stuff/etc $fs
34 }
36 # Pre and post install commands for Tazpkg.
37 post_install()
38 {
39 grep -q ^WPA_OPTIONS= $1/etc/daemons.conf || cat >> $1/etc/daemons.conf <<EOT
40 # wpa_supplicant daemon options
41 WPA_OPTIONS="-B -P/var/run/wpa_supplicant.pid -c/etc/wpa_supplicant.conf -i\$(. /etc/network.conf ; echo \$WIFI_INTERFACE)"
43 EOT
44 # 'w' option dont exist anymore with < 0.6.9
45 sed -i s/'-Bw'/'-B'/ $1/etc/daemons.conf
46 sed -i s/'-B -w'/'-B'/g $1/etc/init.d/network.sh
47 }