Can anyone help me with downgrading a texinfo package from version > 5 to 4.13? This version comes with ubuntu 13.04 or higher and I urgently need 4.13 version. I've found this .patch files but don't have any clue how to install/implement it.
Asked
Active
Viewed 5,986 times
0
1 Answers
2
The instructions for installing GNU Texinfo from the GNU Texinfo website worked for me on Ubuntu 14.04:
Remove the current texinfo via apt-get (I'm not sure if this is required, but I did it just to be safe).
Download the texinfo source:
wget http://ftp.gnu.org/gnu/texinfo/texinfo-4.13.tar.gz
Extract the source files:
gzip -dc < texinfo-4.13.tar.gz | tar -xf - cd texinfo-4.13
Configure, build and install:
./configure make sudo make install
On my computer I also had to install libncurses before I could successfully build texinfo.
-
IMO it's worth mentioning that
texi2dvi
doesn't seem to work on modern machines. At least i had an issue on my Ubuntu trusty. The problem is, that in that shell scriptlocal
is used as a name for a function. Solution can be found here – Anticom Aug 02 '16 at 14:31
configure
with a--prefix
. That's what I did after a bit of head-bashing-on-the-wall for compiling GCC. – muru Jul 03 '14 at 11:15