mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
21 lines
517 B
Plaintext
Executable File
21 lines
517 B
Plaintext
Executable File
# description : Tools allowing to manipulate the Wireless Extensions
|
|
|
|
name=wireless_tools
|
|
version=30.pre9
|
|
_version=${version%.pre*}
|
|
release=1
|
|
source="https://hewlettpackard.github.io/wireless-tools/$name.$version.tar.gz"
|
|
|
|
build() {
|
|
ls
|
|
cd ${name}.${_version}
|
|
sed '/BUILD_STATIC =/d' -i Makefile
|
|
make CFLAGS="${CFLAGS} -I." LDFLAGS="${LDFLAGS}"
|
|
make
|
|
make PREFIX=$PKG/usr \
|
|
INSTALL_DIR=$PKG/usr/bin \
|
|
INSTALL_MAN=$PKG/usr/share/man install
|
|
rm -rf $PKG/usr/share/man/cs
|
|
rm -rf $PKG/usr/share/man/fr*
|
|
}
|