summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiago De Franco <hiago.franco@toradex.com>2025-05-20 16:30:48 -0300
committerHiago De Franco <hiago.franco@toradex.com>2025-05-21 09:48:52 -0300
commit1de47c002c9b7ccbbbc7ff8401826ab59a5dcac2 (patch)
tree01ee888aaf7707e201fb8765281189076e843598
parent303a0ec7f5a1f253cad7380e468d14f555779dfc (diff)
bluealsa: remove recipe in favor of meta-oe one
Remove the bluealsa recipe from meta-toradex-demos so we use the one from meta-opembedded instead [1]. Both recipe are pretty much similar and should not affect the usage of bluealsa into our images. [1] https://github.com/openembedded/meta-openembedded/blob/master/meta-multimedia/recipes-multimedia/bluealsa/bluealsa_4.3.0.bb Related-to: ELB-6306 Signed-off-by: Hiago De Franco <hiago.franco@toradex.com>
-rw-r--r--recipes-multimedia/bluealsa/bluealsa_git.bb66
1 files changed, 0 insertions, 66 deletions
diff --git a/recipes-multimedia/bluealsa/bluealsa_git.bb b/recipes-multimedia/bluealsa/bluealsa_git.bb
deleted file mode 100644
index ab0d8bc..0000000
--- a/recipes-multimedia/bluealsa/bluealsa_git.bb
+++ /dev/null
@@ -1,66 +0,0 @@
-SUMMARY = "Bluetooth Audio ALSA Backend"
-HOMEPAGE = "https://github.com/Arkq/bluez-alsa"
-SECTION = "libs"
-
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=8449a4f133a93f6254b496d4fb476e83"
-
-SRC_URI = "git://github.com/Arkq/bluez-alsa.git;protocol=https;branch=master"
-
-SRCREV = "dd05a1baa261b94da9ba977b5e3392c8b4dc7a5e"
-PV = "4.0.0+git${SRCPV}"
-
-S = "${WORKDIR}/git"
-
-DEPENDS += "alsa-lib bluez5 dbus glib-2.0 sbc"
-
-PACKAGECONFIG ??= "aplay cli hcitop ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
-PACKAGECONFIG[a2dpconf] = "--enable-a2dpconf,--disable-a2dpconf"
-PACKAGECONFIG[aac] = "--enable-aac,--disable-aac,fdk-aac"
-PACKAGECONFIG[aplay] = "--enable-aplay,--disable-aplay"
-PACKAGECONFIG[cli] = "--enable-cli,--disable-cli"
-PACKAGECONFIG[coverage] = "--with-coverage,--without-coverage,lcov-native"
-PACKAGECONFIG[debug] = "--enable-debug,--disable-debug"
-PACKAGECONFIG[debug-time] = "--enable-debug-time,--disable-debug-time"
-PACKAGECONFIG[faststream] = "--enable-faststream,--disable-faststream"
-PACKAGECONFIG[hcitop] = "--enable-hcitop,--disable-hcitop,libbsd ncurses"
-PACKAGECONFIG[libunwind] = "--with-libunwind,--without-libunwind,libunwind"
-PACKAGECONFIG[mp3lame] = "--enable-mp3lame,--disable-mp3lame,lame"
-PACKAGECONFIG[mpg123] = "--enable-mpg123,--disable-mpg123,mpg123,mpg123"
-PACKAGECONFIG[ofono] = "--enable-ofono,--disable-ofono,ofono"
-PACKAGECONFIG[payloadcheck] = "--enable-payloadcheck,--disable-payloadcheck"
-PACKAGECONFIG[rfcomm] = "--enable-rfcomm,--disable-rfcomm"
-PACKAGECONFIG[systemd] = "--enable-systemd --with-systemdsystemunitdir=${systemd_system_unitdir} \
- --with-systemdbluealsaargs='${SYSTEMD_BLUEALSA_ARGS}' --with-systemdbluealsaaplayargs='${SYSTEMD_BLUEALSA_APLAY_ARGS}',--disable-systemd,systemd"
-PACKAGECONFIG[test] = "--enable-test,--disable-test,libcheck libsndfile1"
-PACKAGECONFIG[upower] = "--enable-upower,--disable-upower,,upower"
-
-inherit autotools pkgconfig systemd
-
-EXTRA_OECONF = " \
- --disable-aptx \
- --disable-lc3plus \
- --disable-ldac \
- --disable-manpages \
-"
-
-PACKAGE_BEFORE_PN = "${PN}-aplay"
-RRECOMMENDS:${PN} = "${PN}-aplay"
-
-FILES:${PN}-aplay = "${bindir}/bluealsa-aplay"
-FILES:${PN} += "${libdir}/alsa-lib/*"
-
-SYSTEMD_PACKAGES += "${PN}-aplay"
-SYSTEMD_SERVICE:${PN} = "bluealsa.service"
-SYSTEMD_SERVICE:${PN}-aplay = "bluealsa-aplay.service"
-
-SYSTEMD_AUTO_ENABLE:${PN}-aplay = "disable"
-
-# Choose bluez-alsa arguments to be used in bluealsa systemd service
-# Usually could choose profiles with it: a2dp-source a2dp-sink hfp-hf hfp-ag hsp-hs hsp-ag hfp-ofono
-# Enable bluez-alsa arguments by default:
-SYSTEMD_BLUEALSA_ARGS ?= "-p a2dp-source -p a2dp-sink"
-
-# Choose bluealsa-aplay arguments to be used in bluealsa-aplay systemd service
-# Defaults to be empty:
-SYSTEMD_BLUEALSA_APLAY_ARGS ?= ""