From 1dc2a926cbbb19fbbaa13fac3a28f3603d571464 Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Sun, 11 May 2014 21:21:09 +0200 Subject: grap 1.44 Grap is a language for typesetting graphs specified and first implemented by Brian Kernighan and Jon Bentley at Bell Labs. It is an expressive language for describing graphs and incorporating them in typeset documents. It is implemented as a preprocessor to Kernigan's pic language for describing languages, so any system that can use pic can use grap. For sure, TeX and groff can use it. Closes #29140. Signed-off-by: Adam Vandenberg --- Library/Formula/grap.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Library/Formula/grap.rb (limited to 'Library/Formula') diff --git a/Library/Formula/grap.rb b/Library/Formula/grap.rb new file mode 100644 index 000000000..a4a6b1802 --- /dev/null +++ b/Library/Formula/grap.rb @@ -0,0 +1,16 @@ +require "formula" + +class Grap < Formula + homepage "http://www.lunabase.org/~faber/Vault/software/grap/" + url "http://www.lunabase.org/~faber/Vault/software/grap/grap-1.44.tar.gz" + sha1 "b15e4e04525301cfbd2900b1f1a028e81a12ba92" + + def install + system "./configure", "--disable-debug", + "--disable-dependency-tracking", + "--disable-silent-rules", + "--prefix=#{prefix}", + "--with-example-dir=#{share}/grap/examples" + system "make", "install" + end +end -- cgit v1.2.3