Lout 3.38
A high-level language for document formatting.
It includes facilities for typesetting complex documents containing
floating figures, tables, diagrams, rotated and scaled text or graphics,
footnotes, running headers, footers, an index, table of contents and
bibliography, cross-references, mathematical equations and statistical
graphs.
Lout's capabilities can be extended with definitions which are easier to
write than similar markup languages.
Signed-off-by: David Höppner <0xffea@gmail.com>
2010-02-18 21:57:48 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Lout <Formula
|
|
|
|
url 'ftp://ftp.cs.usyd.edu.au/jeff/lout/lout-3.38.tar.gz'
|
|
|
|
homepage 'http://sourceforge.net/apps/mediawiki/lout/index.php'
|
|
|
|
md5 '388ed456cfcb493ca706677688ec5dde'
|
|
|
|
|
|
|
|
def install
|
|
|
|
inreplace "makefile" do |s|
|
|
|
|
s.change_make_var! "PREFIX", prefix
|
|
|
|
s.change_make_var! "LOUTLIBDIR", lib
|
|
|
|
s.change_make_var! "LOUTDOCDIR", doc
|
2010-03-03 18:46:33 +00:00
|
|
|
s.change_make_var! "MANDIR", man1
|
Lout 3.38
A high-level language for document formatting.
It includes facilities for typesetting complex documents containing
floating figures, tables, diagrams, rotated and scaled text or graphics,
footnotes, running headers, footers, an index, table of contents and
bibliography, cross-references, mathematical equations and statistical
graphs.
Lout's capabilities can be extended with definitions which are easier to
write than similar markup languages.
Signed-off-by: David Höppner <0xffea@gmail.com>
2010-02-18 21:57:48 +00:00
|
|
|
end
|
|
|
|
bin.mkpath
|
2010-03-03 18:46:33 +00:00
|
|
|
man1.mkpath
|
Lout 3.38
A high-level language for document formatting.
It includes facilities for typesetting complex documents containing
floating figures, tables, diagrams, rotated and scaled text or graphics,
footnotes, running headers, footers, an index, table of contents and
bibliography, cross-references, mathematical equations and statistical
graphs.
Lout's capabilities can be extended with definitions which are easier to
write than similar markup languages.
Signed-off-by: David Höppner <0xffea@gmail.com>
2010-02-18 21:57:48 +00:00
|
|
|
(doc + 'lout').mkpath
|
|
|
|
system "make allinstall"
|
|
|
|
end
|
|
|
|
end
|