Add buildroot 2018-02

This commit is contained in:
Pascal Vizeli
2018-03-17 23:47:00 +00:00
parent 3776c47f83
commit 67742041ad
10007 changed files with 405098 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
config BR2_PACKAGE_LIBSAMPLERATE
bool "libsamplerate"
help
Secret Rabbit Code (aka libsamplerate) is a Sample Rate
Converter for audio. One example of where such a thing would
be useful is converting audio from the CD sample rate of
44.1kHz to the 48kHz sample rate used by DAT players.
http://www.mega-nerd.com/SRC/

View File

@@ -0,0 +1,2 @@
# Locally calculated after checking pgp signature
sha256 0a7eb168e2f21353fb6d84da152e4512126f7dc48ccb0be80578c565413444c1 libsamplerate-0.1.9.tar.gz

View File

@@ -0,0 +1,23 @@
################################################################################
#
# libsamplerate
#
################################################################################
LIBSAMPLERATE_VERSION = 0.1.9
LIBSAMPLERATE_SITE = http://www.mega-nerd.com/SRC
LIBSAMPLERATE_INSTALL_STAGING = YES
LIBSAMPLERATE_DEPENDENCIES = host-pkgconf
LIBSAMPLERATE_CONF_OPTS = --disable-fftw --program-transform-name=''
LIBSAMPLERATE_LICENSE = BSD-2-Clause
LIBSAMPLERATE_LICENSE_FILES = COPYING
ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
LIBSAMPLERATE_DEPENDENCIES += alsa-lib
endif
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
LIBSAMPLERATE_DEPENDENCIES += libsndfile
endif
$(eval $(autotools-package))