mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 20:21:58 +02:00
NEW in 2.3.5 - 2020-09-07
=========================
* Disable miners autostart by default. This is a measure to make Tracker 2.x
get as much out of the way as possible with Tracker 3.x available. This
default can be undone with -Dautostart=true.
* Whitelist statx syscall, used in recent glib.
Translations: lt
NEW in 2.3.4 - 2020-08-24
=========================
* Block image/ktx files in 90-gstreamer-image-generic.rule
* Set a deadline of 30 seconds for extraction tasks
* Remove generic gstreamer-based image extraction codepath
* Several fixes to libav-based extractor
* Replace sensitive words
* get the systemd user unit dir from pkg-config
Translations: es, hr, id, it, lt, pl, pt_BR, ro, sv, tr, uk
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
72 lines
2.3 KiB
BlitzBasic
72 lines
2.3 KiB
BlitzBasic
SUMMARY = "Tracker miners and metadata extractors"
|
|
LICENSE = "GPLv2 & LGPLv2.1"
|
|
LIC_FILES_CHKSUM = " \
|
|
file://COPYING.GPL;md5=ee31012bf90e7b8c108c69f197f3e3a4 \
|
|
file://COPYING.LGPL;md5=2d5025d4aa3495befef8f17206a5b0a1 \
|
|
"
|
|
|
|
DEPENDS = " \
|
|
intltool-native \
|
|
tracker \
|
|
zlib \
|
|
"
|
|
|
|
GNOMEBASEBUILDCLASS = "meson"
|
|
|
|
inherit gnomebase gsettings gobject-introspection vala gtk-doc manpages bash-completion features_check
|
|
|
|
SRC_URI[archive.sha256sum] = "9509d37fb29acd233058f4df5bd1234b692ac6f946bc2e5f7b8dbf51dfe5b9fa"
|
|
SRC_URI += "file://0001-meson.build-Just-warn-if-we-build-without-libseccomp.patch"
|
|
|
|
# gobject-introspection is mandatory and cannot be configured
|
|
REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
|
|
UNKNOWN_CONFIGURE_WHITELIST_append = " introspection"
|
|
|
|
PACKAGECONFIG ??= " \
|
|
ffmpeg \
|
|
flac \
|
|
gexiv2 \
|
|
gstreamer \
|
|
icu \
|
|
libexif \
|
|
libgsf \
|
|
jpeg \
|
|
png \
|
|
tiff \
|
|
xml \
|
|
pdf \
|
|
"
|
|
|
|
PACKAGECONFIG[ffmpeg] = ",,ffmpeg"
|
|
PACKAGECONFIG[flac] = "-Dflac=enabled,-Dflac=disabled,flac"
|
|
PACKAGECONFIG[gexiv2] = ",,gexiv2"
|
|
PACKAGECONFIG[gstreamer] = ",,gstreamer1.0 gstreamer1.0-plugins-base"
|
|
PACKAGECONFIG[gupnp] = ",,gupnp-dlna"
|
|
PACKAGECONFIG[icu] = ",,icu"
|
|
PACKAGECONFIG[libexif] = "-Dexif=enabled,-Dexif=disabled,libexif"
|
|
PACKAGECONFIG[libgsf] = "-Dgsf=enabled,-Dgsf=disabled,libgsf"
|
|
PACKAGECONFIG[jpeg] = "-Djpeg=enabled,-Djpeg=disabled,jpeg"
|
|
PACKAGECONFIG[png] = "-Dpng=enabled,-Dpng=disabled,libpng"
|
|
PACKAGECONFIG[tiff] = "-Dtiff=enabled,-Dtiff=disabled,tiff"
|
|
PACKAGECONFIG[xml] = "-Dxml=enabled,-Dxml=disabled,libxml2"
|
|
PACKAGECONFIG[vorbis] = "-Dvorbis=enabled,-Dvorbis=disabled,libvorbis"
|
|
PACKAGECONFIG[pdf] = "-Dpdf=enabled,-Dpdf=disabled,poppler"
|
|
PACKAGECONFIG[upower] = ",,upower"
|
|
|
|
# For security reasons it is strongly recommended to set add meta-security in
|
|
# your layers and 'libseccomp' to PACKAGECONFIG".
|
|
PACKAGECONFIG[libseccomp] = ",,libseccomp"
|
|
# not yet in meta-gnome
|
|
PACKAGECONFIG[rss] = "-Dminer_rss=true,-Dminer_rss=false,libgrss"
|
|
|
|
EXTRA_OEMESON += " \
|
|
-Dsystemd_user_services=${systemd_user_unitdir} \
|
|
"
|
|
|
|
FILES_${PN} += " \
|
|
${datadir}/dbus-1 \
|
|
${datadir}/tracker \
|
|
${libdir}/tracker-miners-2.0 \
|
|
${systemd_user_unitdir} \
|
|
"
|