Add md5sum and description.
[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 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=bing
12 PKG_VERSION:=1.3.5
13 PKG_RELEASE:=0
14
15 PKG_SOURCE:=$(PKG_NAME)_src-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://fgouget.free.fr/bing/
17 PKG_MD5SUM:=60aaee55277672d0cc163bf3f0b3d53f
18 TAR_OPTIONS += || true
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/bing
25 SECTION:=net
26 CATEGORY:=Network
27 TITLE:=bing bandwidth measuring utility
28 URL:=http://fgouget.free.fr/bing/
29 endef
30
31 define Package/bing/description
32 bing evaluates the raw bandwidth of a link (PSTN, xDSL, Cable ...)
33 endef
34
35 define Build/Compile
36 $(call Build/Compile/Default,bing)
37 endef
38
39 define Package/bing/install
40 $(INSTALL_DIR) $(1)/usr/sbin
41 $(INSTALL_BIN) $(PKG_BUILD_DIR)/bing $(1)/usr/sbin/
42 endef
43
44 $(eval $(call BuildPackage,bing))