mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 03:32:12 +02:00
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
1.1 KiB
BlitzBasic
28 lines
1.1 KiB
BlitzBasic
SUMMARY = "A patent-free DSP library"
|
|
DESCRIPTION = "SpeexDSP is a patent-free, Open Source/Free Software DSP library."
|
|
HOMEPAGE = "http://www.speex.org"
|
|
SECTION = "libs"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=314649d8ba9dd7045dfb6683f298d0a8"
|
|
|
|
SRC_URI = "http://downloads.xiph.org/releases/speex/speexdsp-${PV}.tar.gz"
|
|
|
|
UPSTREAM_CHECK_REGEX = "speexdsp-(?P<pver>\d+(\.\d+)+)\.tar"
|
|
|
|
SRC_URI[md5sum] = "b722df341576dc185d897131321008fc"
|
|
SRC_URI[sha256sum] = "682042fc6f9bee6294ec453f470dadc26c6ff29b9c9e9ad2ffc1f4312fd64771"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
EXTRA_OECONF = "\
|
|
--disable-examples \
|
|
${@bb.utils.contains('TARGET_FPU', 'soft', '--enable-fixed-point --disable-float-api', '', d)} \
|
|
"
|
|
|
|
# speexdsp was split off from speex in 1.2rc2. Older versions of speex can't
|
|
# be installed together with speexdsp, since they contain overlapping files.
|
|
RCONFLICTS:${PN} = "speex (< 1.2rc2)"
|
|
RCONFLICTS:${PN}-dbg = "speex-dbg (< 1.2rc2)"
|
|
RCONFLICTS:${PN}-dev = "speex-dev (< 1.2rc2)"
|
|
RCONFLICTS:${PN}-staticdev = "speex-staticdev (< 1.2rc2)"
|