]> git.tuebingen.mpg.de Git - adu.git/commitdiff
Switch from grutatxt to markdown.
authorAndre Noll <maan@tuebingen.mpg.de>
Sat, 4 Jun 2016 14:36:14 +0000 (16:36 +0200)
committerAndre Noll <maan@tuebingen.mpg.de>
Fri, 24 Jun 2016 10:55:33 +0000 (12:55 +0200)
The grutatxt project is dead, so we need to switch to something else
eventually. Fortunately, it is very easy to convert the two files in
the tree from grutatxt to markdown format: only the three links need
to be adjusted.

INSTALL
Makefile

diff --git a/INSTALL b/INSTALL
index 0853126e54a1e3eb01eb3691c594f2c7d7d39e0a..4bababbc6f036e8ce59e0c03057cd20c50f0dd8e 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -1,12 +1,10 @@
 As adu is based on libosl, the object storage layer, you first have
-to install http://people.tuebingen.mpg.de/maan/osl/ (libosl).
+to install [libosl](http://people.tuebingen.mpg.de/maan/osl/).
 
 Adu's command line parser and the interactive help are generated by
-http://www.gnu.org/software/gengetopt/gengetopt.html (gnu gengetopt).
+[gnu gengetopt](http://www.gnu.org/software/gengetopt/gengetopt.html).
 Hence the gengetopt package must be installed to compile adu from
 source.
 
-In order to generate the man page,
-ftp://ftp.gnu.org/pub/gnu/help2man (help2man)
-must be installed. For the html version of the man page,
-http://www.triptico.com/software/grutatxt.html (grutatxt) is used.
+To generate the man page,
+[help2man](ftp://ftp.gnu.org/pub/gnu/help2man) must be installed.
index 00ef9e84c27d9eaec5312792fee98ccbe8be32d1..b5cfebd74b0b4c5c073be2635cc8f1b2d8681536 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -76,9 +76,9 @@ clean:
 
 index.html: adu.1.html index.html.in INSTALL README
        sed -e '/@README@/,$$d' index.html.in > $@
-       grutatxt -nb < README >> $@
+       markdown README >> $@
        sed -e '1,/@README@/d' -e '/@INSTALL@/,$$d' index.html.in >> $@
-       grutatxt -nb < INSTALL >> $@
+       markdown INSTALL >> $@
        sed -e '1,/@INSTALL@/d' -e '/@MAN_PAGE@/,$$d' index.html.in >> $@
        sed -e '1,/Return to Main Contents/d' -e '/Index/,$$d' adu.1.html >> $@
        sed -e '1,/@MAN_PAGE@/d' index.html.in >> $@