python-alsaaudio: new package

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Peter Korsgaard 2014-12-02 23:56:44 +01:00 committed by Thomas Petazzoni
parent a255774480
commit 2312af5374
4 changed files with 30 additions and 0 deletions

View File

@ -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"

View File

@ -0,0 +1,12 @@
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/

View File

@ -0,0 +1,2 @@
# Locally calculated
sha256 bbd5a9eb351def673800707f48e64680685f397e29da72ea4c9355e1a2b2a0fd pyalsaaudio-0.7.tar.gz

View File

@ -0,0 +1,15 @@
################################################################################
#
# 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))