summaryrefslogtreecommitdiff
path: root/recipes/gtk-doc-lite.recipe
diff options
context:
space:
mode:
authorEdward Hervey <edward@centricular.com>2018-02-21 16:01:21 +0100
committerEdward Hervey <bilboed@bilboed.com>2018-02-21 16:01:21 +0100
commit4401aa960835c51894fcf6cc58cf1e68405f6c14 (patch)
tree1eed6277514bed2d33cb3b04b6c2f6b1e747d952 /recipes/gtk-doc-lite.recipe
parent568a948c1a119b58146f078b83fa2d0e48398f34 (diff)
gtk-doc-lite: Upgrade to 1.27
Diffstat (limited to 'recipes/gtk-doc-lite.recipe')
-rw-r--r--recipes/gtk-doc-lite.recipe6
1 files changed, 2 insertions, 4 deletions
diff --git a/recipes/gtk-doc-lite.recipe b/recipes/gtk-doc-lite.recipe
index 042edd33..6c125a4d 100644
--- a/recipes/gtk-doc-lite.recipe
+++ b/recipes/gtk-doc-lite.recipe
@@ -2,10 +2,10 @@
class Recipe(recipe.Recipe):
name = 'gtk-doc-lite'
- version = '1.25'
+ version = '1.27'
stype = SourceType.TARBALL
tarball_dirname = 'gtk-doc-%(version)s'
- url = 'http://ftp.acc.umu.se/pub/GNOME/sources/gtk-doc/1.25/gtk-doc-1.25.tar.xz'
+ url = 'http://ftp.acc.umu.se/pub/GNOME/sources/gtk-doc/%(version)s/gtk-doc-%(version)s.tar.xz'
# TODO: check license - source files are GPLv2+ and COPYING is GPLv3
licenses = [License.GPLv2Plus]
btype = BuildType.CUSTOM
@@ -30,8 +30,6 @@ class Recipe(recipe.Recipe):
os.path.join(aclocal_dir, 'gtk-doc.m4'))
shutil.copy(os.path.join(self.build_dir, 'gtk-doc.make'),
os.path.join(data_dir, 'gtk-doc.make'))
- shutil.copy(os.path.join(self.build_dir, 'gtk-doc.notmpl.make'),
- os.path.join(data_dir, 'gtk-doc.notmpl.make'))
gtkdocize = os.path.join(self.config.prefix, 'bin', 'gtkdocize')
shutil.copy(os.path.join(self.build_dir, 'gtkdocize.in'), gtkdocize)
replacements = {'@PACKAGE@': 'gtk-doc', '@VERSION@': self.version,