diff options
author | Edward Hervey <edward@centricular.com> | 2018-02-21 09:53:57 +0100 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2018-02-21 09:53:57 +0100 |
commit | dbbd47b842df2438f7ba7ca872b60766b60abc6d (patch) | |
tree | ed22565de06de7f06b1f0ddadc8ee999e8a1ab68 /recipes/fribidi.recipe | |
parent | 926296f46f50108be06ca9ca04418a4ebd337489 (diff) |
recipes/fribidi: Upstream fixed the archive issue
Diffstat (limited to 'recipes/fribidi.recipe')
-rw-r--r-- | recipes/fribidi.recipe | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/recipes/fribidi.recipe b/recipes/fribidi.recipe index 6287e502..812e0146 100644 --- a/recipes/fribidi.recipe +++ b/recipes/fribidi.recipe @@ -4,10 +4,7 @@ class Recipe(recipe.Recipe): name = 'fribidi' version = '0.19.7' stype = SourceType.TARBALL - # Upstream tarballs have changed - # See https://github.com/fribidi/fribidi/issues/28 - #url = 'http://fribidi.org/download/fribidi-%(version)s.tar.bz2' - url = 'https://gstreamer.freedesktop.org/data/src/mirror/fribidi-0.19.7.tar.bz2' + url = 'https://github.com/fribidi/fribidi/releases/download/{0}/fribidi-{0}.tar.bz2'.format(version) licenses = [License.LGPLv2_1Plus] autoreconf = True deps = ['glib'] |