diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2011-10-25 14:39:48 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-31 23:03:50 +0000 |
commit | 0cff1018b195f049fe472e1c80daeb7d49459e05 (patch) | |
tree | fd743c34a203a242c69cf612cd17f28dffa8d547 /meta/recipes-multimedia/libsndfile/libsndfile1_1.0.25.bb | |
parent | bbbe1c179b651900659b8bd580c75d6c495c4313 (diff) | |
download | poky-0cff1018b195f049fe472e1c80daeb7d49459e05.tar.gz |
libsndfile1: upgrade to version 1.0.25
(From OE-Core rev: 44da39789bcf0554a82586ebc611b49a4665333d)
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.25.bb')
-rw-r--r-- | meta/recipes-multimedia/libsndfile/libsndfile1_1.0.25.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.25.bb b/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.25.bb new file mode 100644 index 0000000000..bbe2f1d9ba --- /dev/null +++ b/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.25.bb | |||
@@ -0,0 +1,27 @@ | |||
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] = "e2b7bb637e01022c7d20f95f9c3990a2" | ||
12 | SRC_URI[sha256sum] = "59016dbd326abe7e2366ded5c344c853829bebfd1702ef26a07ef662d6aa4882" | ||
13 | |||
14 | LIC_FILES_CHKSUM = "file://COPYING;md5=e77fe93202736b47c07035910f47974a" | ||
15 | |||
16 | S = "${WORKDIR}/libsndfile-${PV}" | ||
17 | |||
18 | EXTRA_OECONF = "--disable-external-libs" | ||
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 | ac_cv_sizeof_off_t=8 | ||
26 | } | ||
27 | |||