summaryrefslogtreecommitdiff
path: root/recipes/cogl.recipe
blob: bbe73612bc8ff1fd4204606ec84faa0f52d9140b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- 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]
    autoreconf = True
    configure_options = "--disable-introspection "
    use_system_libs = True
    deps = [ 'pango', 'gdk-pixbuf' ]
    platform_deps = {
        Platform.WINDOWS: ['libstdc++'],
        }
    autoreconf = True

    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']