Merge pull request #193 from jow-/cjdns-move-tmp
[feed/routing.git] / cjdns / Makefile
1 #
2 # Copyright (C) 2014,2015 Hyperboria.net
3 #
4 # You may redistribute this program and/or modify it under the terms of
5 # the GNU General Public License as published by the Free Software Foundation,
6 # either version 3 of the License, or (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 #
16
17 include $(TOPDIR)/rules.mk
18
19 PKG_NAME:=cjdns
20 PKG_VERSION:=0.17
21 PKG_RELEASE:=3
22
23 PKG_SOURCE_URL:=https://github.com/hyperboria/cjdns.git
24 PKG_SOURCE_PROTO:=git
25 PKG_SOURCE_VERSION:=40e87d9419c19063e772e39c7c59a8a8771c5ee8
26 PKG_LICENSE:=GPL-3.0
27 PKG_SOURCE:=$(PKG_NAME)-$(PKG_SOURCE_VERSION).tar.bz2
28 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_SOURCE_VERSION)
29 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_SOURCE_VERSION)
30
31 include $(INCLUDE_DIR)/package.mk
32
33
34 define Package/cjdns
35 SECTION:=net
36 CATEGORY:=Network
37 SUBMENU:=Routing and Redirection
38 TITLE:=Encrypted near-zero-conf mesh routing protocol
39 URL:=https://github.com/hyperboria/cjdns
40 MAINTAINER:=Lars Gierth <larsg@systemli.org>
41 DEPENDS:=@IPV6 +kmod-tun +libnl-tiny +libpthread +librt \
42 +libuci-lua +lua-bencode +dkjson +luasocket +lua-sha2
43 endef
44
45 define Package/cjdns/description
46 Cjdns implements an encrypted IPv6 network using public-key cryptography \
47 for address allocation and a distributed hash table for routing. \
48 This provides near-zero-configuration networking, and prevents many \
49 of the security and scalability issues that plague existing networks.
50 endef
51
52 define Package/cjdns-tests
53 SECTION:=net
54 CATEGORY:=Network
55 SUBMENU:=Routing and Redirection
56 TITLE:=cjdns test cases
57 URL:=https://github.com/hyperboria/cjdns
58 MAINTAINER:=Lars Gierth <larsg@systemli.org>
59 DEPENDS:=+libpthread +librt
60 endef
61
62 define Package/cjdns-test/description
63 cjdns test cases
64 endef
65
66 define Build/Configure
67 endef
68
69 PKG_DO_VARS:=CJDNS_RELEASE_VERSION=$(PKG_SOURCE_VERSION)
70
71 ifneq ($(CONFIG_KERNEL_SECCOMP_FILTER),y)
72 PKG_DO_VARS+= Seccomp_NO=1
73 endif
74
75 ifneq ($(CONFIG_USE_UCLIBC),)
76 PKG_DO_VARS+= UCLIBC=1
77 endif
78
79 define Build/Compile
80 $(INSTALL_DIR) $(PKG_BUILD_DIR)/tmp
81 CROSS="true" \
82 CC="$(TARGET_CC)" \
83 AR="$(TARGET_AR)" \
84 RANLIB="$(TARGET_RANLIB)" \
85 CFLAGS="$(TARGET_CFLAGS)" \
86 LDFLAGS="$(TARGET_LDFLAGS)" \
87 SYSTEM="linux" \
88 TARGET_ARCH="$(CONFIG_ARCH)" \
89 SSP_SUPPORT="$(CONFIG_SSP_SUPPORT)" \
90 GYP_ADDITIONAL_ARGS="-f make-linux" \
91 CJDNS_BUILD_TMPDIR="$(PKG_BUILD_DIR)/tmp" \
92 $(PKG_DO_VARS) \
93 $(PKG_BUILD_DIR)/do
94 endef
95
96 define Package/cjdns/install
97 $(INSTALL_DIR) \
98 $(1)/usr/sbin \
99 $(1)/usr/bin \
100 $(1)/etc/config \
101 $(1)/etc/init.d \
102 $(1)/etc/uci-defaults \
103 $(1)/usr/lib/lua/cjdns
104
105 $(INSTALL_BIN) \
106 ./files/cjdrouteconf \
107 $(1)/usr/bin
108
109 $(INSTALL_BIN) \
110 $(PKG_BUILD_DIR)/cjdroute \
111 $(1)/usr/sbin
112
113 $(INSTALL_BIN) \
114 $(PKG_BUILD_DIR)/publictoip6 \
115 $(1)/usr/bin
116
117 $(INSTALL_BIN) \
118 ./files/cjdns.init \
119 $(1)/etc/init.d/cjdns
120
121 $(INSTALL_BIN) \
122 ./files/cjdns.defaults \
123 $(1)/etc/uci-defaults/cjdns
124
125 $(CP) \
126 ./lua/cjdns/* \
127 $(1)/usr/lib/lua/cjdns
128 endef
129
130 define Package/cjdns/postinst
131 #!/bin/sh
132 if [ -z $${IPKG_INSTROOT} ] ; then
133 ( . /etc/uci-defaults/cjdns ) && rm -f /etc/uci-defaults/cjdns
134 # TODO: we should have an 'Enable' button instead
135 /etc/init.d/cjdns enabled || /etc/init.d/cjdns enable
136 exit 0
137 fi
138 endef
139
140 define Package/cjdns-tests/install
141 $(INSTALL_DIR) $(1)/usr/bin
142 $(INSTALL_BIN) \
143 $(PKG_BUILD_DIR)/build_linux/test_testcjdroute_c \
144 $(1)/usr/bin
145 endef
146
147 $(eval $(call BuildPackage,cjdns))
148 $(eval $(call BuildPackage,cjdns-tests))