fix perl compile on 8.09
[openwrt/svn-archive/archive.git] / net / httping / Makefile
1 #
2 # Copyright (C) 2006 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:=httping
12 PKG_VERSION:=1.2.6
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
16 PKG_SOURCE_URL:=http://www.vanheusden.com/httping/
17 PKG_MD5SUM:=2fa68b95d190a9e101232792df49e1ad
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/httping
22 SECTION:=net
23 CATEGORY:=Network
24 DEPENDS:=+libopenssl
25 TITLE:=Httping is like 'ping' but for http-requests
26 URL:=http://www.vanheusden.com/httping/
27 endef
28
29 define Package/httping/description
30 Give it an url, and it'll show you how long it takes to connect, send a
31 request and retrieve the reply (only the headers). Be aware that the
32 transmission across the network also takes time!
33 endef
34
35 define Build/Compile
36 $(call Build/Compile/Default, \
37 CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
38 )
39 endef
40
41 define Package/httping/install
42 $(INSTALL_DIR) $(1)/usr/sbin
43 $(INSTALL_BIN) $(PKG_BUILD_DIR)/httping $(1)/usr/sbin/
44 endef
45
46 $(eval $(call BuildPackage,httping))