wok view wpa_supplicant/receipt @ rev 1788

lighttpd-ssl: fix pre/post install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Nov 30 15:33:31 2008 +0000 (2008-11-30)
parents 050151a9f32f
children ea3033355b0a
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_supplicant.conf $fs/etc
31 # Startup script
32 cp -a stuff/etc $fs
33 }
35 # Pre and post install commands for Tazpkg.
36 post_install()
37 {
38 grep -q ^WPA_OPTIONS= $1/etc/daemons.conf || cat >> $1/etc/daemons.conf <<EOT
39 # wpa_supplicant daemon options
40 WPA_OPTIONS="-Bw -P/var/run/wpa_supplicant.pid -c/etc/wpa_supplicant.conf -i\$(. /etc/network.conf ; echo \$WIFI_INTERFACE)"
42 EOT
43 }