diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2014-02-07 12:00:46 +0100 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2014-05-15 11:31:22 +0200 |
commit | 96578ca568dd036de52e1baa43cfa887badb588b (patch) | |
tree | 57ba0ff109ffe1b3ff6155ddfab33ab19867bf49 | |
parent | e32a9c20355a06403fdf91b2009878f3bd50e7f4 (diff) |
zlib: build as a MAKEFILES type instead of AUTOTOOLS
-rw-r--r-- | recipes/zlib.recipe | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes/zlib.recipe b/recipes/zlib.recipe index 437b61b1..5395b1dc 100644 --- a/recipes/zlib.recipe +++ b/recipes/zlib.recipe @@ -6,10 +6,13 @@ class Recipe(recipe.Recipe): name = 'zlib' version = '1.2.8' stype = SourceType.TARBALL + btype = BuildType.MAKEFILE url = 'http://zlib.net/zlib-1.2.8.tar.xz' licenses = [License.BSD_like] add_host_build_target = False can_use_configure_cache = False + configure_tpl = "./configure --prefix %(prefix)s "\ + "--libdir %(libdir)s %(options)s" patches = ['zlib/0001-win32-fix-dll-name.patch'] files_libs = ['libz'] |