diff options
Diffstat (limited to 'meta/recipes-multimedia/libsamplerate/libsamplerate0_0.1.9.bb')
-rw-r--r-- | meta/recipes-multimedia/libsamplerate/libsamplerate0_0.1.9.bb | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/meta/recipes-multimedia/libsamplerate/libsamplerate0_0.1.9.bb b/meta/recipes-multimedia/libsamplerate/libsamplerate0_0.1.9.bb index a24b8c7abc..5473bffca4 100644 --- a/meta/recipes-multimedia/libsamplerate/libsamplerate0_0.1.9.bb +++ b/meta/recipes-multimedia/libsamplerate/libsamplerate0_0.1.9.bb | |||
@@ -4,10 +4,12 @@ SECTION = "libs" | |||
4 | LICENSE = "BSD-2-Clause" | 4 | LICENSE = "BSD-2-Clause" |
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=336d6faf40fb600bafb0061f4052f1f4 \ | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=336d6faf40fb600bafb0061f4052f1f4 \ |
6 | file://src/samplerate.c;beginline=1;endline=7;md5=5b6982a8c2811c7312c13cccbf55f55e" | 6 | file://src/samplerate.c;beginline=1;endline=7;md5=5b6982a8c2811c7312c13cccbf55f55e" |
7 | DEPENDS = "flac libsndfile1" | 7 | DEPENDS = "libsndfile1" |
8 | PR = "r1" | 8 | PR = "r1" |
9 | 9 | ||
10 | SRC_URI = "http://www.mega-nerd.com/SRC/libsamplerate-${PV}.tar.gz" | 10 | SRC_URI = "http://www.mega-nerd.com/SRC/libsamplerate-${PV}.tar.gz \ |
11 | file://0001-configure.ac-improve-alsa-handling.patch \ | ||
12 | " | ||
11 | 13 | ||
12 | SRC_URI[md5sum] = "2b78ae9fe63b36b9fbb6267fad93f259" | 14 | SRC_URI[md5sum] = "2b78ae9fe63b36b9fbb6267fad93f259" |
13 | SRC_URI[sha256sum] = "0a7eb168e2f21353fb6d84da152e4512126f7dc48ccb0be80578c565413444c1" | 15 | SRC_URI[sha256sum] = "0a7eb168e2f21353fb6d84da152e4512126f7dc48ccb0be80578c565413444c1" |
@@ -18,4 +20,7 @@ S = "${WORKDIR}/libsamplerate-${PV}" | |||
18 | 20 | ||
19 | inherit autotools pkgconfig | 21 | inherit autotools pkgconfig |
20 | 22 | ||
21 | PACKAGECONFIG[fftw] = ",--disable-fftw,fftw" | 23 | # FFTW and ALSA are only used in tests and examples, so they don't affect |
24 | # normal builds. It should be safe to ignore these, but explicitly disabling | ||
25 | # them adds some extra certainty that builds are deterministic. | ||
26 | EXTRA_OECONF = "--disable-fftw --disable-alsa" | ||