diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2011-04-19 16:40:19 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-04-28 10:44:29 +0100 |
commit | 60cf46671e9b812578dd2f3997961cf6fb3bb748 (patch) | |
tree | b6738251bd3c5a1d30402c060f6138e53e420f5f /meta/recipes-multimedia/libsndfile/libsndfile1_1.0.24.bb | |
parent | 0cad3afb041bebdb76d36c6df3e5b3ec6e121e3f (diff) | |
download | poky-60cf46671e9b812578dd2f3997961cf6fb3bb748.tar.gz |
libsndfile1: upgrade to version 1.0.24
(From OE-Core rev: 71794b266e3fcd9661f57a4ba70abc87e74b7326)
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/libsndfile/libsndfile1_1.0.24.bb')
-rw-r--r-- | meta/recipes-multimedia/libsndfile/libsndfile1_1.0.24.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.24.bb b/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.24.bb new file mode 100644 index 0000000000..a547d768b2 --- /dev/null +++ b/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.24.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | DESCRIPTION = "An audio format Conversion library" | ||
2 | HOMEPAGE = "http://www.mega-nerd.com/libsndfile" | ||
3 | AUTHOR = "Erik de Castro Lopo" | ||
4 | DEPENDS = "sqlite3" | ||
5 | SECTION = "libs/multimedia" | ||
6 | LICENSE = "LGPLv2.1" | ||
7 | PR = "r0" | ||
8 | |||
9 | SRC_URI = "http://www.mega-nerd.com/libsndfile/files/libsndfile-${PV}.tar.gz" | ||
10 | |||
11 | SRC_URI[md5sum] = "8f823c30c1d8d44830db6ab845d6679e" | ||
12 | SRC_URI[sha256sum] = "b6050e6fbfbb72c8bfbc895104697a4af1d49077a64e4846e0be7af87c9e56a4" | ||
13 | |||
14 | LIC_FILES_CHKSUM = "file://COPYING;md5=e77fe93202736b47c07035910f47974a" | ||
15 | |||
16 | S = "${WORKDIR}/libsndfile-${PV}" | ||
17 | |||
18 | inherit autotools lib_package pkgconfig | ||
19 | |||
20 | do_configure_prepend_arm() { | ||
21 | export ac_cv_sys_largefile_source=1 | ||
22 | export ac_cv_sys_file_offset_bits=64 | ||
23 | ac_cv_sizeof_off_t=8 | ||
24 | } | ||
25 | |||