view gub/specs/texinfo.py @ 6487:9bf9726dad38

schikkers-list: install updates.
author Jan Nieuwenhuizen <janneke@gnu.org>
date Thu, 03 Feb 2011 23:57:59 +0100
parents 360836e39d6d
children
line wrap: on
line source

from gub import tools

class Texinfo__tools (tools.AutoBuild):
    source = 'http://ftp.gnu.org/pub/gnu/texinfo/texinfo-4.13a.tar.gz'
    patches = ['texinfo-4.13a-fix-bashism.patch']
    def patch (self):
        tools.AutoBuild.patch (self)
        # Drop ncurses dependency
        self.file_sub ([(' info ',' ')], '%(srcdir)s/Makefile.in')
        # Avoid man rebuild
        self.system('''
touch %(srcdir)s/doc/texi2dvi.1
touch %(srcdir)s/doc/texi2pdf.1
touch %(srcdir)s/doc/pdftexi2dvi.1
''')