diff options
author | Matthew Waters <matthew@centricular.com> | 2018-11-05 18:09:54 +1100 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-11-12 04:13:14 +0000 |
commit | 6b066e3744242ba510dc1aca945338f044b2865c (patch) | |
tree | da62570874781dd434f922f7e9d08e6a2082acea /recipes/fribidi.recipe | |
parent | 90b91f6e9a88c09e2e88492478e39282566aced0 (diff) |
recipes/fribidi: also install .la file
Allows linking an android application
Diffstat (limited to 'recipes/fribidi.recipe')
-rw-r--r-- | recipes/fribidi.recipe | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/recipes/fribidi.recipe b/recipes/fribidi.recipe index 7a6b494c..e39e88da 100644 --- a/recipes/fribidi.recipe +++ b/recipes/fribidi.recipe @@ -1,5 +1,7 @@ # -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python +from cerbero.tools.libtool import LibtoolLibrary + class Recipe(recipe.Recipe): name = 'fribidi' version = '1.0.5' @@ -15,3 +17,8 @@ class Recipe(recipe.Recipe): files_libs = ['libfribidi'] files_bins = ['fribidi'] files_devel = ['lib/pkgconfig/fribidi.pc', 'include/fribidi'] + + def post_install (self): + lib = LibtoolLibrary('fribidi', None, None, None, self.config.libdir, + self.config.target_platform, deps=['glib-2.0']) + lib.save() |