blob: 1e6d09ab92a4112bea8cccc9140c14ed7fc0ab65 [file] [log] [blame]
Andrew Geissler82c905d2020-04-13 13:39:40 -05001SUMMARY = "A patent-free DSP library"
2DESCRIPTION = "SpeexDSP is a patent-free, Open Source/Free Software DSP library."
3HOMEPAGE = "http://www.speex.org"
4SECTION = "libs"
5LICENSE = "BSD-3-Clause"
Andrew Geissler615f2f12022-07-15 14:00:58 -05006LIC_FILES_CHKSUM = "file://COPYING;md5=eff3f76350f52a99a3df5eec6b79c02a"
Andrew Geissler82c905d2020-04-13 13:39:40 -05007
8SRC_URI = "http://downloads.xiph.org/releases/speex/speexdsp-${PV}.tar.gz"
9
10UPSTREAM_CHECK_REGEX = "speexdsp-(?P<pver>\d+(\.\d+)+)\.tar"
11
Andrew Geissler615f2f12022-07-15 14:00:58 -050012SRC_URI[sha256sum] = "8c777343e4a6399569c72abc38a95b24db56882c83dbdb6c6424a5f4aeb54d3d"
Andrew Geissler82c905d2020-04-13 13:39:40 -050013
14inherit autotools pkgconfig
15
16EXTRA_OECONF = "\
17 --disable-examples \
18 ${@bb.utils.contains('TARGET_FPU', 'soft', '--enable-fixed-point --disable-float-api', '', d)} \
19"
20
21# speexdsp was split off from speex in 1.2rc2. Older versions of speex can't
22# be installed together with speexdsp, since they contain overlapping files.
Patrick Williams213cb262021-08-07 19:21:33 -050023RCONFLICTS:${PN} = "speex (< 1.2rc2)"
24RCONFLICTS:${PN}-dbg = "speex-dbg (< 1.2rc2)"
25RCONFLICTS:${PN}-dev = "speex-dev (< 1.2rc2)"
26RCONFLICTS:${PN}-staticdev = "speex-staticdev (< 1.2rc2)"