void-packages/srcpkgs/wireless_tools/template
2014-06-05 11:49:34 +02:00

32 lines
959 B
Plaintext

# Template file for 'wireless_tools'
pkgname=wireless_tools
version=29
revision=6
wrksrc="${pkgname}.${version}"
short_desc="Set of tools allowing to manipulate the Wireless Extensions"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html"
license="GPL-2"
distfiles="http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/$pkgname.$version.tar.gz"
checksum=6fb80935fe208538131ce2c4178221bab1078a1656306bce8909c19887e2e5a1
do_build() {
sed -e "s|CFLAGS=|CFLAGS+=|g" -i Makefile
make CC="$CC" LD="$LD" AR="$AR" RANLIB="$RANLIB" ${makejobs}
}
do_install() {
make INSTALL_DIR=${DESTDIR}/usr/sbin INSTALL_LIB=${DESTDIR}/usr/lib \
INSTALL_INC=${DESTDIR}/usr/include \
INSTALL_MAN=${DESTDIR}/usr/share/man install
}
wireless_tools-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/*.so
}
}