Commit 2312af53 authored by Peter Korsgaard's avatar Peter Korsgaard Committed by Thomas Petazzoni
Browse files
parent a2557744
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -483,6 +483,7 @@ endif
	source "package/python3/Config.in"
if BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
menu "external python modules"
	source "package/python-alsaaudio/Config.in"
	source "package/python-bottle/Config.in"
	source "package/python-certifi/Config.in"
	source "package/python-cffi/Config.in"
+12 −0
Original line number Diff line number Diff line
comment "python-alsaaudio needs a toolchain w/ threads"
	depends on !BR2_TOOLCHAIN_HAS_THREADS

config BR2_PACKAGE_PYTHON_ALSAAUDIO
	bool "python-alsaaudio"
	depends on BR2_TOOLCHAIN_HAS_THREADS # alsa-lib
	select BR2_PACKAGE_ALSA_LIB
	help
	  The PyAlsaAudio package contains bindings for the ALSA sound
	  API.

	  http://pyalsaaudio.sourceforge.net/
+2 −0
Original line number Diff line number Diff line
# Locally calculated
sha256	bbd5a9eb351def673800707f48e64680685f397e29da72ea4c9355e1a2b2a0fd  pyalsaaudio-0.7.tar.gz
+15 −0
Original line number Diff line number Diff line
################################################################################
#
# python-alsaaudio
#
################################################################################

PYTHON_ALSAAUDIO_VERSION = 0.7
PYTHON_ALSAAUDIO_SOURCE = pyalsaaudio-$(PYTHON_ALSAAUDIO_VERSION).tar.gz
PYTHON_ALSAAUDIO_SITE = http://downloads.sourceforge.net/project/pyalsaaudio
PYTHON_ALSAAUDIO_SETUP_TYPE = distutils
PYTHON_ALSAAUDIO_LICENSE = Python software foundation license v2
PYTHON_ALSAAUDIO_LICENSE_FILES = LICENSE
PYTHON_ALSAAUDIO_DEPENDENCIES = alsa-lib

$(eval $(python-package))