Browse Source

Merge pull request #13436 from neheb/alsau

alsa-ucm-conf: add
lilik-openwrt-22.03
Rosen Penev 4 years ago
committed by GitHub
parent
commit
b41a261adc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 49 additions and 2 deletions
  1. +47
    -0
      libs/alsa-ucm-conf/Makefile
  2. +2
    -2
      sound/alsa-utils/Makefile

+ 47
- 0
libs/alsa-ucm-conf/Makefile View File

@ -0,0 +1,47 @@
#
# 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.3
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=ftp://ftp.alsa-project.org/pub/lib/ \
http://distfiles.gentoo.org/distfiles/
PKG_HASH:=1bc24da04bb27a75e323c9f0fb03e44705b6bb8a8baf255b94b41d457d590d00
PKG_MAINTAINER:=
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 ALS 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))

+ 2
- 2
sound/alsa-utils/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=alsa-utils
PKG_VERSION:=1.2.3
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=ftp://ftp.alsa-project.org/pub/utils/ \
@ -29,7 +29,7 @@ include $(INCLUDE_DIR)/package.mk
define Package/alsa-utils
SECTION:=sound
CATEGORY:=Sound
DEPENDS:=+alsa-lib +libncursesw +libpthread
DEPENDS:=+alsa-lib +alsa-ucm-conf +libncursesw +libpthread
TITLE:=ALSA (Advanced Linux Sound Architecture) utilities
URL:=https://www.alsa-project.org/
endef


Loading…
Cancel
Save