wok-current rev 10745
hostapd: Fix receipt (missing $stuff)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Mon May 30 11:00:41 2011 +0200 (2011-05-30) |
parents | 4934fca68878 |
children | 50879362c14d |
files | hostapd/receipt |
line diff
1.1 --- a/hostapd/receipt Mon May 30 10:57:50 2011 +0200 1.2 +++ b/hostapd/receipt Mon May 30 11:00:41 2011 +0200 1.3 @@ -5,16 +5,17 @@ 1.4 CATEGORY="network" 1.5 SHORT_DESC="Daemon for wireless software access points." 1.6 MAINTAINER="gokhlayeh@slitaz.org" 1.7 -DEPENDS="openssl libnl" 1.8 -BUILD_DEPENDS="openssl-dev libnl-dev" 1.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.10 WEB_SITE="http://hostap.epitest.fi/hostapd/" 1.11 WGET_URL="http://hostap.epitest.fi/releases/$TARBALL" 1.12 1.13 +DEPENDS="openssl libnl" 1.14 +BUILD_DEPENDS="openssl-dev libnl-dev" 1.15 + 1.16 # Rules to configure and make the package. 1.17 compile_rules() 1.18 { 1.19 - cp -a stuff/config $src/hostapd/.config 1.20 + cp -a $stuff/config $src/hostapd/.config 1.21 mkdir -p $DESTDIR/usr/bin 1.22 1.23 cd $src/hostapd 1.24 @@ -30,15 +31,12 @@ 1.25 $src/hostapd/hostapd.vlan $src/hostapd/hostapd.wpa_psk \ 1.26 $src/hostapd/wired.conf $src/hostapd/hlr_auc_gw.milenage_db \ 1.27 $DESTDIR/etc/hostapd 1.28 - 1.29 } 1.30 1.31 # Rules to gen a SliTaz package suitable for Tazpkg. 1.32 genpkg_rules() 1.33 { 1.34 mkdir -p $fs/usr $fs/etc/init.d 1.35 - 1.36 cp -a $_pkg/usr/bin $fs/usr 1.37 - 1.38 - cp -a stuff/hostapd $fs/etc/init.d 1.39 + cp -a $stuff/hostapd $fs/etc/init.d 1.40 }