2ff8d41d2d2be567a32f48c93b1af0ae11e0f335
[openwrt/svn-archive/archive.git] / net / bing / Makefile
1 # Copyright (C) 2006 OpenWrt.org
2 #
3 # This is free software, licensed under the GNU General Public License v2.
4 # See /LICENSE for more information.
5 #
6 # $Id: Makefile 4603 2006-08-18 21:21:06Z mbm $
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 PKG_CAT:=zcat
18 TAR_OPTIONS += || true
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/bing
26 SECTION:=net
27 CATEGORY:=Network
28 TITLE:=bing bandwidth measuring utility
29 DESCRIPTION:=\
30 bing evaluates the raw bandwidth of a link (PSTN, xDSL, Cable ...)
31 URL:=http://fgouget.free.fr/bing/
32 endef
33
34 define Build/Compile
35 $(call Build/Compile/Default)
36 endef
37
38 define Package/bing/install
39 install -d -m0755 $(1)/usr/sbin
40 $(CP) $(PKG_BUILD_DIR)/bing $(1)/usr/sbin/
41 endef
42
43 $(eval $(call BuildPackage,bing))