blob: 47532801901c00395b8d9f0a1333f5e04ffed2f4 (
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
|
DESCRIPTION = "Tracker is a tool designed to extract information and metadata about your personal data so that it can be searched easily and quickly."
LICENSE = "GPLv2"
DEPENDS = "file gtk+ gstreamer gamin libgmime dbus poppler libexif libgsf"
PR = "r3"
SRC_URI = "http://www.gnome.org/~jamiemcc/tracker/tracker-${PV}.tar.gz \
file://no-ioprio.patch;patch=1 \
file://90tracker "
inherit autotools pkgconfig
do_install_append() {
cp -dPr ${D}${STAGING_DATADIR}/* ${D}${datadir}/ || true
install -d ${D}/${sysconfdir}/X11/Xsession.d/
install -m 0755 ${WORKDIR}/90tracker ${D}/${sysconfdir}/X11/Xsession.d/
}
do_stage() {
autotools_stage_all
}
FILES_${PN} += "${datadir}/dbus-1/"
CONFFILES_${PN} += "${sysconfdir}/X11/Xsession.d/90tracker"
|