Merge pull request #4962 from diizzyy/patch-96
[feed/packages.git] / net / keepalived / Makefile
1 #
2 # Copyright (C) 2006-2015 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:=keepalived
11 PKG_VERSION:=1.2.19
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:= http://www.keepalived.org/software
16 PKG_HASH:=32fbae732c1cd854cacd7a930d4a26f5bad6372cdecb5e3139f0c17e87493853
17
18 PKG_LICENSE:=GPL-2.0+
19 PKG_LICENSE_FILES:=COPYING
20 PKG_MAINTAINER:=Ben Kelly <ben@benjii.net>
21
22 PKG_INSTALL:=1
23
24 include $(INCLUDE_DIR)/package.mk
25 include $(INCLUDE_DIR)/kernel.mk
26
27 define Package/keepalived
28 SECTION:=net
29 CATEGORY:=Network
30 TITLE:=Failover and monitoring daemon for LVS clusters
31 URL:=http://www.keepalived.org/
32 DEPENDS:=+PACKAGE_libnl-genl:libnl-genl +libopenssl
33 endef
34
35 define Package/keepalived/description
36 Failover and monitoring daemon for Linux Virtual Server (LVS) clusters.
37 endef
38
39 define Package/keepalived/conffiles
40 /etc/keepalived/keepalived.conf
41 endef
42
43 CONFIGURE_ARGS+= \
44 --enable-vrrp \
45 --enable-fwmark \
46 --enable-sha1 \
47 --disable-lvs \
48 --disable-lvs-syncd \
49 --disable-snmp \
50 --disable-debug \
51 --disable-profile \
52 --with-kernel-dir="$(LINUX_DIR)/$(LINUX_UAPI_DIR)"
53
54 MAKE_FLAGS += \
55 STRIP="/bin/true" \
56
57 define Package/keepalived/install
58 $(INSTALL_DIR) $(1)/usr/sbin
59 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/keepalived $(1)/usr/sbin/
60 $(INSTALL_DIR) $(1)/usr/bin
61 $(CP) $(PKG_INSTALL_DIR)/usr/bin/genhash $(1)/usr/bin/
62 $(INSTALL_DIR) $(1)/etc/keepalived
63 $(CP) $(PKG_INSTALL_DIR)/etc/keepalived/keepalived.conf $(1)/etc/keepalived/
64 $(INSTALL_DIR) $(1)/etc/init.d
65 $(INSTALL_BIN) ./files/keepalived.init $(1)/etc/init.d/keepalived
66 $(INSTALL_DIR) $(1)/etc/config
67 $(INSTALL_CONF) ./files/keepalived.config $(1)/etc/config/keepalived
68 endef
69
70 $(eval $(call BuildPackage,keepalived))