summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,