blob: c2b9c825b6a22d962a55c0fd36c324f452909e25 (
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
|
DESCRIPTION = "OLSR mesh routing daemon"
HOMEPAGE = "http://www.olsr.org"
DESCRIPTION_olsrd-libs = "OLSR mesh routing daemon - optional libraries"
SECTION = "console/network"
PRIORITY = "optional"
LICENSE = "BSD"
MAJ_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}"
SRC_URI="http://www.olsr.org/releases/${MAJ_VER}/olsrd-${PV}.tar.bz2 \
file://init \
file://olsrd.conf"
PACKAGES =+ "olsrd-libs"
FILES_olsrd-libs = "${libdir}"
S = "${WORKDIR}/olsrd-${PV}"
inherit update-rc.d
INITSCRIPT_NAME = "olsrd"
INITSCRIPT_PARAMS = "defaults"
do_compile() {
touch .depend
touch src/cfgparser/.depend
oe_runmake OS=linux all libs
}
do_install () {
oe_runmake INSTALL_PREFIX=${D} install install_libs
install -d ${D}${sysconfdir}/init.d
install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/olsrd
install -m 644 ${WORKDIR}/olsrd.conf ${D}${sysconfdir}
}
CONFFILES_${PN} = "${sysconfdir}/olsrd.conf"
|