relayd: update to the latest version, fixes a build error with the new gcc (#18010)
[openwrt/staging/lynxis/omap.git] / package / network / services / relayd / Makefile
1 #
2 # Copyright (C) 2010-2011 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:=relayd
11 PKG_VERSION:=2014-10-05
12 PKG_RELEASE=$(PKG_SOURCE_VERSION)
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
16 PKG_SOURCE_URL:=git://nbd.name/relayd.git
17 PKG_SOURCE_PROTO:=git
18 PKG_SOURCE_VERSION:=767c54d5957a2db0b847add771e8e890b82569c0
19
20 PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
21
22 include $(INCLUDE_DIR)/package.mk
23 include $(INCLUDE_DIR)/cmake.mk
24
25 define Package/relayd
26 SECTION:=net
27 CATEGORY:=Network
28 SUBMENU:=Routing and Redirection
29 TITLE:=Transparent routing / relay daemon
30 DEPENDS:=+libubox
31 endef
32
33 TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include
34
35 define Package/relayd/install
36 $(INSTALL_DIR) $(1)/usr/sbin
37 $(INSTALL_BIN) $(PKG_BUILD_DIR)/relayd $(1)/usr/sbin/relayd
38 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
39 $(INSTALL_DATA) ./files/relay.hotplug $(1)/etc/hotplug.d/iface/30-relay
40 $(INSTALL_DIR) $(1)/etc/init.d
41 $(INSTALL_BIN) ./files/relay.init $(1)/etc/init.d/relayd
42 endef
43
44 $(eval $(call BuildPackage,relayd))