Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1 | SUMMARY = "A patent-free DSP library" |
| 2 | DESCRIPTION = "SpeexDSP is a patent-free, Open Source/Free Software DSP library." |
| 3 | HOMEPAGE = "http://www.speex.org" |
| 4 | SECTION = "libs" |
| 5 | LICENSE = "BSD-3-Clause" |
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=314649d8ba9dd7045dfb6683f298d0a8" |
| 7 | |
| 8 | SRC_URI = "http://downloads.xiph.org/releases/speex/speexdsp-${PV}.tar.gz" |
| 9 | |
| 10 | UPSTREAM_CHECK_REGEX = "speexdsp-(?P<pver>\d+(\.\d+)+)\.tar" |
| 11 | |
| 12 | SRC_URI[md5sum] = "b722df341576dc185d897131321008fc" |
| 13 | SRC_URI[sha256sum] = "682042fc6f9bee6294ec453f470dadc26c6ff29b9c9e9ad2ffc1f4312fd64771" |
| 14 | |
| 15 | inherit autotools pkgconfig |
| 16 | |
| 17 | EXTRA_OECONF = "\ |
| 18 | --disable-examples \ |
| 19 | ${@bb.utils.contains('TARGET_FPU', 'soft', '--enable-fixed-point --disable-float-api', '', d)} \ |
| 20 | " |
| 21 | |
| 22 | # speexdsp was split off from speex in 1.2rc2. Older versions of speex can't |
| 23 | # be installed together with speexdsp, since they contain overlapping files. |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 24 | RCONFLICTS:${PN} = "speex (< 1.2rc2)" |
| 25 | RCONFLICTS:${PN}-dbg = "speex-dbg (< 1.2rc2)" |
| 26 | RCONFLICTS:${PN}-dev = "speex-dev (< 1.2rc2)" |
| 27 | RCONFLICTS:${PN}-staticdev = "speex-staticdev (< 1.2rc2)" |