diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-10-28 18:10:59 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-10-28 20:56:29 +0100 |
commit | 90e9bd5548bdd501e1fccd019a5363c20c9bd6f1 (patch) | |
tree | 0f184f7b760f687dfe4b7580bc437bddf40ac54c /recipes/libxml2.recipe | |
parent | 9b4803eb6479b3f8781f33401e2fb51ef71160af (diff) |
recipes: Use a git repository for tarball recipes
Create a git repository with the initial contents of the tarball
and apply patches from recipes in git format.
This make development easier knowing what changed with respect of
the original tarball, creating new patches and maintaining the
patchset.
Diffstat (limited to 'recipes/libxml2.recipe')
-rw-r--r-- | recipes/libxml2.recipe | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/libxml2.recipe b/recipes/libxml2.recipe index 75a10bbd..31085acd 100644 --- a/recipes/libxml2.recipe +++ b/recipes/libxml2.recipe @@ -9,9 +9,9 @@ class Recipe(recipe.Recipe): licenses = [License.MIT] deps = [ 'zlib' ] autoreconf = True - patches = ['libxml2/0003-Enable-windows-cross-compilation.patch', - 'libxml2/0006-Disable-tests.patch', - 'libxml2/0010-pythondir-prefix.patch'] + patches = ['libxml2/0001-Enable-windows-cross-compilation.patch', + 'libxml2/0002-makefiles-disable-tests.patch', + 'libxml2/0003-configure-fix-python-dir-prefix.patch'] files_libs = ['libxml2'] files_devel = ['include/libxml2', 'lib/xml2Conf.sh', 'bin/xml2-config', |