X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/926c6a1f223dd18be29a5e7651c080ee609b41e6..a270bd59c38b471b0498d2d0756eadb740cf04df:/openwrt/package/wireless-tools/Makefile diff --git a/openwrt/package/wireless-tools/Makefile b/openwrt/package/wireless-tools/Makefile index 3e551ff2e..4d132b99d 100644 --- a/openwrt/package/wireless-tools/Makefile +++ b/openwrt/package/wireless-tools/Makefile @@ -3,9 +3,9 @@ include $(TOPDIR)/rules.mk PKG_NAME:=wireless-tools -PKG_VERSION:=28.pre6 +PKG_VERSION:=28.pre7 PKG_RELEASE:=1 -PKG_MD5SUM:=3ad1da3b17dff963eba32f0b79401253 +PKG_MD5SUM:=bf598d6ded79e9e6b9bc2dbeb8258f48 PKG_SOURCE_URL:=http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux PKG_SOURCE:=wireless_tools.$(PKG_VERSION).tar.gz @@ -40,3 +40,16 @@ $(IPKG_WIRELESS_TOOLS): cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/iw{config,getid,list,priv,spy} $(IDIR_WIRELESS_TOOLS)/usr/sbin/ $(RSTRIP) $(IDIR_WIRELESS_TOOLS) $(IPKG_BUILD) $(IDIR_WIRELESS_TOOLS) $(PACKAGE_DIR) + +install-dev: + mkdir -p $(STAGING_DIR)/usr/{lib,include} + cp -a $(PKG_BUILD_DIR)/libiw.so* $(STAGING_DIR)/usr/lib/ + ln -sf libiw.so.28 $(STAGING_DIR)/usr/lib/libiw.so + cp -a $(PKG_BUILD_DIR)/{iwlib,wireless}.h $(STAGING_DIR)/usr/include/ + +uninstall-dev: + rm -f $(STAGING_DIR)/usr/lib/libiw.* + rm -f $(STAGING_DIR)/usr/include/{iwlib,wireless}.h + +compile: install-dev +clean: uninstall-dev