diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2015-03-02 21:38:58 +0530 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2015-03-02 17:10:50 +0100 |
commit | a06ef78aa888b11fd7b6b3aac7ed630565907c0c (patch) | |
tree | 2f575f2fce89d2035a10d7d10327b534a8518359 /recipes | |
parent | 4724d5871d3d2ddacc409f400eea7ea30e2b79ef (diff) |
freetype: libpng is a dependency
The build fails without it
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/freetype.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/freetype.recipe b/recipes/freetype.recipe index 2213b516..e4f5834c 100644 --- a/recipes/freetype.recipe +++ b/recipes/freetype.recipe @@ -8,7 +8,7 @@ class Recipe(recipe.Recipe): url = 'http://download.savannah.gnu.org/releases/freetype/freetype-2.5.5.tar.bz2' licenses = [License.FreeType] configure_tpl = "%(config-sh)s --prefix=%(prefix)s --libdir=%(libdir)s" - deps = ['zlib', 'bzip2'] + deps = ['zlib', 'bzip2', 'libpng'] files_libs = ['libfreetype'] files_devel = ['bin/freetype-config', |