blob: 2ee89ae32da24d2e7c645f23f8669bb5e36c8165 (
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 = 'cogl'
version = '1.8.2'
# TODO: check license - source files are LGPLv2+ and COPYING is LGPLv2.1
licenses = [License.LGPLv2_1Plus]
configure_options = "--disable-introspection "
use_system_libs = True
deps = [ 'gdk-pixbuf' ]
files_libs = ['libcogl', 'libcogl-pango']
files_devel = [
'lib/pkgconfig/cogl-gl-1.0.pc',
'lib/pkgconfig/cogl-1.0.pc',
'lib/pkgconfig/cogl-pango-1.0.pc',
'include/cogl',
]
files_lang = ['cogl']
|