18 lines
557 B
Makefile
18 lines
557 B
Makefile
|
################################################################################
|
||
|
#
|
||
|
# libsamplerate
|
||
|
#
|
||
|
################################################################################
|
||
|
|
||
|
LIBSAMPLERATE_VERSION = 0.1.7
|
||
|
LIBSAMPLERATE_SITE = http://www.mega-nerd.com/SRC
|
||
|
LIBSAMPLERATE_INSTALL_STAGING = YES
|
||
|
LIBSAMPLERATE_DEPENDENCIES = host-pkg-config
|
||
|
LIBSAMPLERATE_CONF_OPT = --disable-fftw --program-transform-name=''
|
||
|
|
||
|
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
|
||
|
LIBSAMPLERATE_DEPENDENCIES += libsndfile
|
||
|
endif
|
||
|
|
||
|
$(eval $(call AUTOTARGETS,package/multimedia,libsamplerate))
|