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.
23 lines
809 B
23 lines
809 B
################################################################################
|
|
#
|
|
# portaudio
|
|
#
|
|
################################################################################
|
|
|
|
PORTAUDIO_VERSION = 190700_20210406
|
|
PORTAUDIO_SITE = http://files.portaudio.com/archives
|
|
PORTAUDIO_SOURCE = pa_stable_v$(PORTAUDIO_VERSION).tgz
|
|
PORTAUDIO_INSTALL_STAGING = YES
|
|
PORTAUDIO_MAKE = $(MAKE1)
|
|
PORTAUDIO_LICENSE = portaudio license (MIT-like plus special clause)
|
|
PORTAUDIO_LICENSE_FILES = LICENSE.txt
|
|
|
|
PORTAUDIO_DEPENDENCIES = \
|
|
$(if $(BR2_PACKAGE_PORTAUDIO_ALSA),alsa-lib)
|
|
|
|
PORTAUDIO_CONF_OPTS = \
|
|
$(if $(BR2_PACKAGE_PORTAUDIO_ALSA),--with-alsa,--without-alsa) \
|
|
$(if $(BR2_PACKAGE_PORTAUDIO_OSS),--with-oss,--without-oss) \
|
|
$(if $(BR2_PACKAGE_PORTAUDIO_CXX),--enable-cxx,--disable-cxx)
|
|
|
|
$(eval $(autotools-package))
|
|
|