aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nrlolsr/nrlolsr_7.8.1.bb
blob: 3fa5e2f4dfb6f733f4a703ba3d1ef92d0f4a609e (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
DESCRIPTION = "NRL OLSR - added to OE to support the Maniac Challenge (http://www.maniacchallenge.org/)"
SECTION = "applications"
LICENSE = "Public Domain"

S="${WORKDIR}/nrlolsr/"

SRC_URI = "http://downloads.pf.itd.nrl.navy.mil/olsr/nrlolsrdv7.8.1.tgz \
           file://nrlolsr-cross.patch;patch=1 \
          "

do_compile () {
	cd ${S}/unix

	sed -i -e 's:-I/usr/X11R6/include:-I${STAGING_INCDIR}:g' Makefile.linux
	sed -i -e 's:-L/usr/X11R6/lib:-L${STAGING_LIBDIR}:g' Makefile.linux
	sed -i -e 's:/usr/local/bin:${STAGING_BINDIR}:g' Makefile.linux
	sed -i -e 's:make -f Makefile:make -e -f Makefile:g' Makefile.common

#	EXTRA_OEMAKE="-f Makefile.linux"
	oe_runmake -f Makefile.linux

}

do_install () {
	install -d ${D}/${bindir}
	install unix/nrlolsrd ${D}/${bindir}
}