diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-07-22 07:20:00 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-07-22 07:20:00 +0530 |
commit | 8539c509cbcac82ceb2afd99488b6b40764b98ca (patch) | |
tree | 233fb55452379b1e2c78e0bcf0e567b63d5d0cae /recipes/libiconv.recipe | |
parent | 422541eec080bd03eab0b5ff2f961b49bf1f5941 (diff) |
recipes: Use %(version)s in all tarball URLs
It makes it easier to upgrade recipes.
Diffstat (limited to 'recipes/libiconv.recipe')
-rw-r--r-- | recipes/libiconv.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/libiconv.recipe b/recipes/libiconv.recipe index bd705c8b..96ceece0 100644 --- a/recipes/libiconv.recipe +++ b/recipes/libiconv.recipe @@ -7,7 +7,7 @@ class Recipe(recipe.Recipe): # only libraries are LGPLv2+, tools are GPLv3+ and defined below licenses = [License.LGPLv2Plus] stype = SourceType.TARBALL - url = 'http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.15.tar.gz' + url = 'http://ftp.gnu.org/pub/gnu/libiconv/libiconv-%(version)s.tar.gz' patches = ['libiconv/0001-Use-correct-autotools-versions.patch', 'libiconv/0002-lib-Only-rename-locale_charset-for-libiconv-not-libc.patch',] # 'libiconv/0002-Add-support-for-Android.patch', |