diff options
| author | Khem Raj <raj.khem@gmail.com> | 2025-01-09 11:23:03 -0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-01-10 09:33:52 -0800 |
| commit | 89a1484f3a82ce6c70667986d03777914de8cce4 (patch) | |
| tree | 89c1954f9b4a3f762838f2e05708cc371fae2421 | |
| parent | e7ca3cedb0ada5363db24d1ba7256544732173d7 (diff) | |
| download | meta-openembedded-89a1484f3a82ce6c70667986d03777914de8cce4.tar.gz | |
mpd: Use meson wrap for fmt
mpd still depends on fmt 11.0.x and oe-core has moved to 11.1.x
until mpd is ported to use it, lets fall back to what mpd works with
instead of using system provided fmt
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-multimedia/recipes-multimedia/musicpd/mpd_0.23.16.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-multimedia/recipes-multimedia/musicpd/mpd_0.23.16.bb b/meta-multimedia/recipes-multimedia/musicpd/mpd_0.23.16.bb index 4d854d6fc5..51c459cffd 100644 --- a/meta-multimedia/recipes-multimedia/musicpd/mpd_0.23.16.bb +++ b/meta-multimedia/recipes-multimedia/musicpd/mpd_0.23.16.bb | |||
| @@ -15,14 +15,18 @@ DEPENDS += " \ | |||
| 15 | icu \ | 15 | icu \ |
| 16 | dbus \ | 16 | dbus \ |
| 17 | expat \ | 17 | expat \ |
| 18 | fmt \ | ||
| 19 | " | 18 | " |
| 20 | 19 | ||
| 21 | PV .= "+git" | 20 | PV .= "+git" |
| 22 | SRC_URI = "git://github.com/MusicPlayerDaemon/MPD;branch=master;protocol=https \ | 21 | SRC_URI = "git://github.com/MusicPlayerDaemon/MPD;branch=master;protocol=https \ |
| 22 | https://github.com/mesonbuild/wrapdb/releases/download/fmt_11.0.2-1/fmt-11.0.2.tar.gz;name=fmt;subdir=git/subprojects \ | ||
| 23 | https://wrapdb.mesonbuild.com/v2/fmt_11.0.2-1/get_patch;downloadfilename=fmt_11.0.2-1_patch.zip;name=fmt-meson;subdir=git/subprojects \ | ||
| 23 | file://mpd.conf.in \ | 24 | file://mpd.conf.in \ |
| 24 | " | 25 | " |
| 25 | SRCREV = "b5bd294e5c88c062b1a9c0c4c60397fbf7f3f1c5" | 26 | SRCREV = "b5bd294e5c88c062b1a9c0c4c60397fbf7f3f1c5" |
| 27 | SRC_URI[fmt.sha256sum] = "6cb1e6d37bdcb756dbbe59be438790db409cdb4868c66e888d5df9f13f7c027f" | ||
| 28 | SRC_URI[fmt-meson.sha256sum] = "90c9e3b8e8f29713d40ca949f6f93ad115d78d7fb921064112bc6179e6427c5e" | ||
| 29 | |||
| 26 | S = "${WORKDIR}/git" | 30 | S = "${WORKDIR}/git" |
| 27 | 31 | ||
| 28 | EXTRA_OEMESON += "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '-Dsystemd=enabled -Dsystemd_system_unit_dir=${systemd_system_unitdir} -Dsystemd_user_unit_dir=${systemd_system_unitdir}', '-Dsystemd=disabled', d)} \ | 32 | EXTRA_OEMESON += "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '-Dsystemd=enabled -Dsystemd_system_unit_dir=${systemd_system_unitdir} -Dsystemd_user_unit_dir=${systemd_system_unitdir}', '-Dsystemd=disabled', d)} \ |
