surpport seeking the recorded video
[vuplus_openembedded] / recipes / navit / navit.inc
1 DESCRIPTION = "Navit is a car navigation system with routing engine."
2 LICENSE = "GPL"
3 SECTION = "x11/applications"
4 DEPENDS = "glib-2.0 gtk+"
5 RRECOMMENDS = "gpsd speechd flite"
6
7 PE = "1"
8 INC_PR = "r5"
9
10 inherit autotools
11
12 EXTRA_OECONF = " \
13   --disable-binding-python \
14   --disable-gui-sdl \
15   --disable-samplemap \
16   --enable-avoid-unaligned \
17   --disable-graphics-qt-qpainter \
18 "
19
20 #  --enable-avoid-float \
21 #check for TARGET_FPU=soft and inform configure of the result so it can disable some floating points
22 require navit-fpu.inc
23 EXTRA_OECONF += "${@get_navit_fpu_setting(bb, d)}"
24
25 PACKAGES = "${PN}-dbg ${PN}-dev ${PN} ${PN}-doc ${PN}-locale"
26
27 FILES_${PN} += "${libdir}/${PN}/*/*.so"
28 FILES_${PN}-dbg += "${libdir}/${PN}/*/.debug"
29
30 SRC_URI_append = " \
31                   file://navit.desktop \
32                   file://navit.png \
33                  "
34
35 do_install_append() {
36         install -d ${D}${datadir}/applications/
37         install -m 0644 ${WORKDIR}/navit.desktop ${D}${datadir}/applications/
38         install -d ${D}${datadir}/pixmaps/
39         install -m 0644 ${WORKDIR}/navit.png ${D}${datadir}/pixmaps/
40
41         rm ${D}${libdir}/${PN}/*/*.la
42 }