summaryrefslogtreecommitdiff
path: root/recipes/mpg123.recipe
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-07-22 07:20:00 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-07-22 07:20:00 +0530
commit8539c509cbcac82ceb2afd99488b6b40764b98ca (patch)
tree233fb55452379b1e2c78e0bcf0e567b63d5d0cae /recipes/mpg123.recipe
parent422541eec080bd03eab0b5ff2f961b49bf1f5941 (diff)
recipes: Use %(version)s in all tarball URLs
It makes it easier to upgrade recipes.
Diffstat (limited to 'recipes/mpg123.recipe')
-rw-r--r--recipes/mpg123.recipe2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/mpg123.recipe b/recipes/mpg123.recipe
index d7ecedef..909293d0 100644
--- a/recipes/mpg123.recipe
+++ b/recipes/mpg123.recipe
@@ -4,7 +4,7 @@ class Recipe(recipe.Recipe):
name = 'mpg123'
version = '1.25.10'
stype = SourceType.TARBALL
- url = 'http://downloads.sourceforge.net/project/mpg123/mpg123/1.25.10/mpg123-1.25.10.tar.bz2'
+ url = 'http://downloads.sourceforge.net/project/mpg123/mpg123/%(version)s/mpg123-%(version)s.tar.bz2'
licenses = [License.LGPLv2_1]
autoreconf = True
configure_options = '--with-audio=dummy --enable-static'