22 lines
534 B
Plaintext
22 lines
534 B
Plaintext
# Description: Tools to configure and manipulate wlan devices
|
|
# URL: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html
|
|
# Packager:Till Biedermann, tillbiedermann at yahoo dot de
|
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
|
# Depends on:
|
|
|
|
name=wireless-tools
|
|
version=29
|
|
release=1
|
|
source=(http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/${name/-/_}.$version.tar.gz)
|
|
|
|
build() {
|
|
cd ${name/-/_}.$version
|
|
|
|
# fix compiler flags
|
|
sed "s|CFLAGS=|CFLAGS=$CFLAGS |" -i Makefile
|
|
|
|
make
|
|
make PREFIX=$PKG/usr install
|
|
}
|
|
|