You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.1 KiB

  1. #
  2. # This is free software, licensed under the GNU General Public License v2.
  3. # See /LICENSE for more information.
  4. #
  5. include $(TOPDIR)/rules.mk
  6. PKG_NAME:=alsa-ucm-conf
  7. PKG_VERSION:=1.2.6.2
  8. PKG_RELEASE:=$(AUTORELEASE)
  9. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  10. PKG_SOURCE_URL:=ftp://ftp.alsa-project.org/pub/lib/ \
  11. http://distfiles.gentoo.org/distfiles/
  12. PKG_HASH:=8be24fb9fe789ee2778ae6f32e18e8043fe7f8bc735871e9d17c68a04566a822
  13. PKG_MAINTAINER:=
  14. PKG_LICENSE:=BSD-3-Clause
  15. PKG_LICENSE_FILES:=LICENSE
  16. include $(INCLUDE_DIR)/package.mk
  17. define Package/alsa-ucm-conf
  18. SECTION:=libs
  19. CATEGORY:=Libraries
  20. SUBMENU:=Sound
  21. TITLE:=ALSA Use Case Manager configuration (and topologies)
  22. URL:=https://www.alsa-project.org/
  23. PKGARCH:=all
  24. endef
  25. define Package/alsa-ucm-conf/description
  26. This is a set of configuration files needed for some ALS utilities like alsactl.
  27. endef
  28. define Build/Configure
  29. endef
  30. define Build/Compile
  31. endef
  32. define Package/alsa-ucm-conf/install
  33. $(INSTALL_DIR) $(1)/usr/share/alsa
  34. $(CP) $(PKG_BUILD_DIR)/ucm2 $(1)/usr/share/alsa
  35. endef
  36. $(eval $(call BuildPackage,alsa-ucm-conf))