addedd poprouting makefile
[feed/routing.git] / poprouting / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_NAME:=prince
4 PKG_VERSION:=v0.2
5 PKG_RELEASE:=2
6
7 PKG_BUILD_DIR:=$(BUILD_DIR)/prince-$(PKG_VERSION)
8 PKG_USE_MIPS16:=0
9 PKG_SOURCE_PROTO:=git
10 PKG_SOURCE:=prince-$(PKG_VERSION).tar.gz
11 PKG_SOURCE_URL:=https://github.com/gabri94/poprouting.git
12 PKG_SOURCE_VERSION:=v0.2
13 PKG_SOURCE_SUBDIR:=prince-v0.2
14 include $(INCLUDE_DIR)/package.mk
15 define Package/prince
16 SECTION :=net
17 CATEGORY :=Network
18 SUBMENU :=Routing and Redirection
19 Mantainer :=Gabriele Gemmi <gabriel@autistici.org>
20 TITLE :=PopRouting daemon
21 MENU :=0
22 DEPENDS := +libjson-c +libpthread
23 endef
24
25 define Package/poprouting/description
26 Prince is an open source implementation of the PopRouting Algorithm.
27 It has been developed as a Google Summer of Code Project in collaboration with Freifunk and the University of Trento.
28
29 It fetches topology data from a Link State routing deamon(OONF, OLSR, OSPF, etc),
30 uses the betweenness centrality to optimize the timer's value and pushes back the optimized timer.
31 Currently it only supports OLSRd2 (aka OONF).
32 endef
33
34
35 $(eval $(call BuildPackage,poprouting))