1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-06-05 22:19:21 +02:00

Get buildroot-external tree to reflect 2022.02.1

- Changes to the raspberypi board folder/structure
- Bump python related poackages and fixes to Python3.10
- Bump KF5 framewerk packages to 5.91
- Bump qtwebengine to 5.15.8
- Bump/Add/Fix all OVOS related packages
- Fixes all over the OpenVoiceOS structure for 2022.02.1
This commit is contained in:
j1nx
2022-05-12 10:46:41 +02:00
parent 2ebb462737
commit e84818f62e
382 changed files with 859 additions and 38843 deletions

View File

@@ -4,31 +4,22 @@
#
################################################################################
SPOTIFYD_VERSION = 4dd5a6010a5dbff5aac5e06f236f84e83d71c597
SPOTIFYD_SITE = $(call github,capnfabs,spotifyd,$(SPOTIFYD_VERSION))
SPOTIFYD_VERSION = ae6dac7a54f899316674ba57ce4a0f9890cd2b1c
SPOTIFYD_SITE = $(call github,Spotifyd,spotifyd,$(SPOTIFYD_VERSION))
SPOTIFYD_LICENSE = GPL-3.0
SPOTIFYD_LICENSE_FILES = LICENSE
SPOTIFYD_DEPENDENCIES = host-rustc
SPOTIFYD_DEPENDENCIES = host-rustc host-pkgconf
SPOTIFYD_CARGO_ENV = \
PKG_CONFIG_ALLOW_CROSS=1 \
OPENSSL_LIB_DIR=$(HOST_DIR)/lib \
OPENSSL_INCLUDE_DIR=$(HOST_DIR)/include
SPOTIFYD_CARGO_ENV = CARGO_HOME=$(HOST_DIR)/share/cargo \
CC=$(TARGET_CC) \
HOST_CC=gcc \
PKG_CONFIG_ALLOW_CROSS=1 \
OPENSSL_LIB_DIR=$(HOST_DIR)/lib \
OPENSSL_INCLUDE_DIR=$(HOST_DIR)/include
SPOTIFYD_BIN_DIR = target/$(RUSTC_TARGET_NAME)/release
SPOTIFYD_CARGO_OPTS = --release \
--no-default-features \
--features=pulseaudio_backend,dbus_keyring,dbus_mpris \
--target=$(RUSTC_TARGET_NAME) \
--manifest-path=$(@D)/Cargo.toml
define SPOTIFYD_BUILD_CMDS
$(TARGET_MAKE_ENV) $(SPOTIFYD_CARGO_ENV) \
cargo build $(SPOTIFYD_CARGO_OPTS)
endef
SPOTIFYD_CARGO_BUILD_OPTS = --no-default-features \
--features=pulseaudio_backend,dbus_keyring,dbus_mpris
define SPOTIFYD_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 0755 $(@D)/$(SPOTIFYD_BIN_DIR)/spotifyd \
@@ -42,4 +33,4 @@ define SPOTIFYD_INSTALL_INIT_SYSTEMD
$(TARGET_DIR)/usr/lib/systemd/system/spotifyd.service
endef
$(eval $(generic-package))
$(eval $(cargo-package))