blob: c40198fa8f30522427ecff9d4a33d225fc7c276c [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001SUMMARY = "Speech Audio Codec"
2DESCRIPTION = "Speex is an Open Source/Free Software patent-free audio compression format designed for speech."
3HOMEPAGE = "http://www.speex.org"
4SECTION = "libs"
Brad Bishopf3f93bb2019-10-16 14:33:32 -04005LICENSE = "BSD-3-Clause"
Andrew Geissler615f2f12022-07-15 14:00:58 -05006LIC_FILES_CHKSUM = "file://COPYING;md5=eff3f76350f52a99a3df5eec6b79c02a \
7 file://include/speex/speex.h;beginline=1;endline=34;md5=ef8c8ea4f7198d71cf3509c6ed05ea50 \
8 "
Brad Bishopd7bf8c12018-02-25 22:55:05 -05009DEPENDS = "libogg speexdsp"
10
Andrew Geissler615f2f12022-07-15 14:00:58 -050011SRC_URI = "http://downloads.xiph.org/releases/speex/speex-${PV}.tar.gz"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050012UPSTREAM_CHECK_REGEX = "speex-(?P<pver>\d+(\.\d+)+)\.tar"
13
Andrew Geissler615f2f12022-07-15 14:00:58 -050014SRC_URI[sha256sum] = "4b44d4f2b38a370a2d98a78329fefc56a0cf93d1c1be70029217baae6628feea"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050015
16inherit autotools pkgconfig lib_package
17
18EXTRA_OECONF = "\
19 ${@bb.utils.contains('TARGET_FPU', 'soft', '--enable-fixed-point --disable-float-api --disable-vbr', '', d)} \
20"