mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
d2b2f5952d
Changelog: - Add UCM profiles for DualSense PS5 controller and multiple Qualcomm platforms - Improve USB audio device handling and HDA initialization patterns - Enhance phantom jack detection and optional headphone output handling - Add support for Steinberg audio devices and new MediaTek SoC configs Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=alsa-ucm-conf
|
|
PKG_VERSION:=1.2.15.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=https://www.alsa-project.org/files/pub/lib/ \
|
|
https://distfiles.gentoo.org/distfiles/
|
|
PKG_HASH:=9f79e813c08fc86cfa46dd75c4fcda1a4a51b482db2607e1fcfaafb92f588a31
|
|
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/alsa-ucm-conf
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
SUBMENU:=Sound
|
|
TITLE:=ALSA Use Case Manager configuration (and topologies)
|
|
URL:=https://www.alsa-project.org/
|
|
PKGARCH:=all
|
|
endef
|
|
|
|
define Package/alsa-ucm-conf/description
|
|
This is a set of configuration files needed for some ALSA utilities like alsactl.
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/alsa-ucm-conf/install
|
|
$(INSTALL_DIR) $(1)/usr/share/alsa
|
|
$(CP) $(PKG_BUILD_DIR)/ucm2 $(1)/usr/share/alsa
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,alsa-ucm-conf))
|