blob: e41d2fade87881c8bc32d825d418e2f9034bafbf (
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 = 'fribidi'
version = '0.19.6'
stype = SourceType.TARBALL
url = 'http://fribidi.org/download/fribidi-%(version)s.tar.bz2'
licenses = [License.LGPLv2_1Plus]
autoreconf = True
deps = ['glib']
patches = ['fribidi/0001-fribidi.def-Include-all-required-symbols.patch']
files_libs = ['libfribidi']
files_bins = ['fribidi']
files_devel = ['lib/pkgconfig/fribidi.pc', 'include/fribidi']
|