e773e08aab
git-svn-id: svn://svn.openwrt.org/openwrt/packages@8632 3c298f89-4303-0410-b956-a3cf2f4a3e73
52 lines
1.1 KiB
Makefile
52 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
# $Id$
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=wiviz
|
|
PKG_VERSION:=1.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/wiviz
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libpcap
|
|
TITLE:=Wireless Network Visualization
|
|
URL:=http://devices.natetrue.com/wiviz/
|
|
endef
|
|
|
|
define Build/Prepare
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
|
endef
|
|
|
|
EXTRA_CFLAGS += -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include
|
|
EXTRA_LDFLAGS += -L$(STAGING_DIR)/usr/lib
|
|
|
|
define Build/Compile
|
|
$(call Build/Compile/Default, \
|
|
CCOPTS="$(TARGET_CFLAGS)" \
|
|
INCLUDE="$(EXTRA_CFLAGS)" \
|
|
LDFLAGS="$(EXTRA_LDFLAGS)" \
|
|
)
|
|
endef
|
|
|
|
define Package/wiviz/install
|
|
mkdir -p $(1)/usr/sbin
|
|
$(CP) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
|
|
$(CP) ./files/* $(1)
|
|
find $(1) -name CVS | xargs rm -rf
|
|
find $(1) -name .svn | xargs rm -rf
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,wiviz))
|