blob: 3b7f25fa604c29b7db4c5ac546d5a55aa72885dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#
# Copyright (C) 2007-2009 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=qolyester
PKG_VERSION:=20090302
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://qolsr.lri.fr/code/
PKG_MD5SUM:=650286fc2ea3e13c246d233aaa46f2a4
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/qolyester
SECTION:=net
CATEGORY:=Network
DEPENDS:=+libpthread +libstdcpp @!TARGET_avr32 @!powerpc
TITLE:=OLSR implementation with QoS
URL:=http://qolsr.lri.fr/code/
endef
define Package/qolyester/description
This is an implementation from scratch of the OLSR protocol.
It is written in the C++ programming language and its goals
are modularity, efficiency and conformance to RFC 3626 (OLSR).
endef
# uses GNU configure
define Package/qolyester/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/qolsrd $(1)/usr/bin/
endef
$(eval $(call BuildPackage,qolyester))
|