summaryrefslogtreecommitdiff
path: root/recipes/fribidi.recipe
blob: 6287e5025633a4d4911b03cd1e07a0c5e5590548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python

class Recipe(recipe.Recipe):
    name = 'fribidi'
    version = '0.19.7'
    stype = SourceType.TARBALL
    # Upstream tarballs have changed
    # See https://github.com/fribidi/fribidi/issues/28
    #url = 'http://fribidi.org/download/fribidi-%(version)s.tar.bz2'
    url = 'https://gstreamer.freedesktop.org/data/src/mirror/fribidi-0.19.7.tar.bz2'
    licenses = [License.LGPLv2_1Plus]
    autoreconf = True
    deps = ['glib']
    patches = ['fribidi/0001-fribidi.def-Include-all-required-symbols.patch',
               'fribidi/0002-fribidi-disable-docs.patch']
    configure_options = '--enable-shared --enable-static'

    files_libs = ['libfribidi']
    files_bins = ['fribidi']
    files_devel = ['lib/pkgconfig/fribidi.pc', 'include/fribidi']