btpd: add missing dependency on libopenssl
[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 include $(INCLUDE_DIR)/package.mk
20
21 define Package/bing
22 SECTION:=net
23 CATEGORY:=Network
24 TITLE:=bing bandwidth measuring utility
25 URL:=http://fgouget.free.fr/bing/
26 endef
27
28 define Package/bing/description
29 bing evaluates the raw bandwidth of a link (PSTN, xDSL, Cable ...)
30 endef
31
32 define Build/Compile
33 $(call Build/Compile/Default,bing)
34 endef
35
36 define Package/bing/install
37 $(INSTALL_DIR) $(1)/usr/sbin
38 $(INSTALL_BIN) $(PKG_BUILD_DIR)/bing $(1)/usr/sbin/
39 endef
40
41 $(eval $(call BuildPackage,bing))