blob: 7cf592dedd313571044aec8c406736f363e3c444 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'opus'
version = '1.3'
licenses = [{License.BSD_like: ['COPYING']}]
stype = SourceType.TARBALL
url = 'xiph://.tar.gz'
tarball_checksum = '4f3d69aefdf2dbaf9825408e452a8a414ffc60494c70633560700398820dc550'
files_libs = ['libopus']
files_devel = ['include/opus', 'lib/pkgconfig/opus.pc']
# Starting with v1.1, Opus has special ARM assembly optimizations when
# built without floating point support. Since all our builds assume floating
# point is available (NEON or VFP), we're not enabling that. However, the
# option is there. Note that there is separate NEON/intrinsics support for
# ARM and x86.
# configure_options = '--disable-fixed-point --enable-asm'
|