diff options
Diffstat (limited to 'meta/recipes-multimedia/libsndfile/libsndfile1_1.0.28.bb')
-rw-r--r-- | meta/recipes-multimedia/libsndfile/libsndfile1_1.0.28.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.28.bb b/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.28.bb new file mode 100644 index 0000000000..248b292e36 --- /dev/null +++ b/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.28.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | SUMMARY = "Audio format Conversion library" | ||
2 | HOMEPAGE = "http://www.mega-nerd.com/libsndfile" | ||
3 | AUTHOR = "Erik de Castro Lopo" | ||
4 | DEPENDS = "flac libogg libvorbis sqlite3" | ||
5 | SECTION = "libs/multimedia" | ||
6 | LICENSE = "LGPLv2.1" | ||
7 | |||
8 | SRC_URI = "http://www.mega-nerd.com/libsndfile/files/libsndfile-${PV}.tar.gz" | ||
9 | |||
10 | SRC_URI[md5sum] = "646b5f98ce89ac60cdb060fcd398247c" | ||
11 | SRC_URI[sha256sum] = "1ff33929f042fa333aed1e8923aa628c3ee9e1eb85512686c55092d1e5a9dfa9" | ||
12 | |||
13 | LIC_FILES_CHKSUM = "file://COPYING;md5=e77fe93202736b47c07035910f47974a" | ||
14 | |||
15 | S = "${WORKDIR}/libsndfile-${PV}" | ||
16 | |||
17 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'alsa', d)}" | ||
18 | PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib" | ||
19 | |||
20 | inherit autotools lib_package pkgconfig | ||
21 | |||
22 | do_configure_prepend_arm() { | ||
23 | export ac_cv_sys_largefile_source=1 | ||
24 | export ac_cv_sys_file_offset_bits=64 | ||
25 | } | ||
26 | |||