[package] add uhub (#4977)
[openwrt/svn-archive/archive.git] / net / bing / Makefile
1 #
2 # Copyright (C) 2006-2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=bing
11 PKG_VERSION:=1.3.5
12 PKG_RELEASE:=0
13
14 PKG_SOURCE:=$(PKG_NAME)_src-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://fgouget.free.fr/bing/
16 PKG_MD5SUM:=60aaee55277672d0cc163bf3f0b3d53f
17 TAR_OPTIONS += || true
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/bing
24 SECTION:=net
25 CATEGORY:=Network
26 TITLE:=bing bandwidth measuring utility
27 URL:=http://fgouget.free.fr/bing/
28 endef
29
30 define Package/bing/description
31 bing evaluates the raw bandwidth of a link (PSTN, xDSL, Cable ...)
32 endef
33
34 define Build/Compile
35 $(call Build/Compile/Default,bing)
36 endef
37
38 define Package/bing/install
39 $(INSTALL_DIR) $(1)/usr/sbin
40 $(INSTALL_BIN) $(PKG_BUILD_DIR)/bing $(1)/usr/sbin/
41 endef
42
43 $(eval $(call BuildPackage,bing))