blob: adbcdfbef03b7b97dcd10c627be6f9bc0d169951 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'opencore-amr'
version = '0.1.5'
stype = SourceType.TARBALL
url = 'sf://.tar.gz'
tarball_checksum = '2c006cb9d5f651bfb5e60156dbff6af3c9d35c7bbcc9015308c0aff1e14cd341'
licenses = [License.Apachev2]
patches = ['opencore-amr/0001-Fix-include-dir-in-pc-files.patch']
files_libs = ['libopencore-amrnb', 'libopencore-amrwb']
files_devel = ['include/opencore-amrwb', 'include/opencore-amrnb',
'lib/pkgconfig/opencore-amrwb.pc', 'lib/pkgconfig/opencore-amrnb.pc']
|