blob: 4323b49640091c80b2df14659e1bbab7615cc68b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require avahi.inc
PR = "r8"
DEPENDS += "avahi gtk+"
SRC_URI += "file://dbus-pre-1.1.1-support.patch;patch=1"
AVAHI_GTK = "--enable-gtk"
S = "${WORKDIR}/avahi-${PV}"
do_stage() {
install -d ${STAGING_INCDIR}/avahi-ui
cp ${S}/avahi-ui/*.h ${STAGING_INCDIR}/avahi-ui/
oe_libinstall -C avahi-ui -a -so libavahi-ui ${STAGING_LIBDIR}
}
PACKAGES = "${PN} ${PN}-dbg"
FILES_${PN} = "${libdir}/libavahi-ui*.so.*"
FILES_${PN}-dbg += "${libdir}/.debug/libavah-ui*"
|