blob: 97539c7cbc353c59148adf35e5ce102f8f96ecee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'fribidi'
version = '0.19.2'
licenses = [License.LGPLv2_1Plus]
files_libs = ['libfribidi']
files_bins = ['fribidi']
files_devel = ['lib/pkgconfig/fribidi.pc', 'include/fribidi']
def prepare(self):
if self.config.target_platform == Platform.ANDROID:
self.autoreconf = True
elif self.config.target_platform == Platform.IOS:
self.autoreconf = True
|