diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-07-22 12:37:34 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-07-22 12:37:34 +0530 |
commit | fb3729a9c9863b5fe58df1858be8036ed837b62c (patch) | |
tree | 5818e09de1be24f95ca8e3b1320fb5a313443d94 /recipes/taglib.recipe | |
parent | 3e86ad23ca623499023d7a7256119d53363f535a (diff) |
recipes: Move all recipes to HTTPS
Also add a check in Cerbero to ensure that no insecure URLs are used.
Diffstat (limited to 'recipes/taglib.recipe')
-rw-r--r-- | recipes/taglib.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/taglib.recipe b/recipes/taglib.recipe index 4b912bfb..552eb55d 100644 --- a/recipes/taglib.recipe +++ b/recipes/taglib.recipe @@ -7,7 +7,7 @@ class Recipe(recipe.Recipe): name = 'taglib' version = '1.11.1' stype = SourceType.TARBALL - url = 'http://{0}.org/releases/{0}-{1}.tar.gz'.format(name, version) + url = 'https://taglib.org/releases/taglib-%(version)s.tar.gz' # either LGPLv2.1 or MPLv1.1 licenses = [License.LGPLv2_1] configure_options = '-DWITH_MP4=ON -DWITH_ASF=ON -DBUILD_SHARED_LIBS=1 -DBUILD_STATIC_LIBS=1 -DCMAKE_DISABLE_FIND_PACKAGE_Boost=TRUE' |