aa6ae09137
git-svn-id: svn://svn.openwrt.org/openwrt/packages@25132 3c298f89-4303-0410-b956-a3cf2f4a3e73
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2008 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=wavemon
|
|
PKG_VERSION:=0.7.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases
|
|
PKG_MD5SUM:=bdd9fcaf5dd7c609fea1f401d57cc094
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/wavemon
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=N-curses based wireless network devices monitor
|
|
DEPENDS:= +libncurses
|
|
SUBMENU:=wireless
|
|
URL:=http://eden-feed.erg.abdn.ac.uk/wavemon/
|
|
endef
|
|
|
|
define Package/wavemon/description
|
|
wavemon is a ncurses-based monitoring application for wireless network
|
|
devices. It currently works under Linux with devices that are supported
|
|
by the wireless extensions by Jean Tourrilhes (included in Kernel 2.4
|
|
and higher), e.g. the Lucent Orinoco cards.
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
CFLAGS="$(TARGET_CFLAGS) -L${STAGING_DIR}/usr/lib -I${STAGING_DIR}/usr/include" \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
all
|
|
endef
|
|
|
|
define Package/wavemon/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(CP) $(PKG_BUILD_DIR)/wavemon $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,wavemon))
|