wok view wpa_supplicant/receipt @ rev 3175

reconfigure udev after /etc/udev/rules.d addition
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 25 13:26:29 2009 +0200 (2009-05-25)
parents a21935f50b2f
children cb36ea9aacce
line source
1 # SliTaz package receipt.
3 PACKAGE="wpa_supplicant"
4 VERSION="0.5.10"
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
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/wpa_cli $fs/usr/bin
28 cp -a $src/wpa_supplicant $fs/usr/bin
29 cp -a $src/wpa_passphrase $fs/usr/bin
30 cp -a $src/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="-Bw -P/var/run/wpa_supplicant.pid -c/etc/wpa_supplicant.conf -i\$(. /etc/network.conf ; echo \$WIFI_INTERFACE)"
43 EOT
44 }