aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAlexis Hildebrandt2010-08-18 01:45:17 +0200
committerAdam Vandenberg2010-09-23 08:29:49 -0700
commiteb8d3210cf332e3cab282d73cdf5689a8c5dcd73 (patch)
tree3b389b9eae632bd279564649e3297b8fa323ff13 /Library
parent61bb114694fc12e8a91dc81c301a0818ad0caf33 (diff)
downloadhomebrew-eb8d3210cf332e3cab282d73cdf5689a8c5dcd73.tar.bz2
New Formula: mscgen
A small program that parses Message Sequence Chart descriptions and produces PNG, SVG, EPS or server side image maps (ismaps) as the output. Mscgen aims to provide a simple text language that is clear to create, edit and understand, which can also be transformed into common image formats for display or printing. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mscgen.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/mscgen.rb b/Library/Formula/mscgen.rb
new file mode 100644
index 000000000..db634b6f9
--- /dev/null
+++ b/Library/Formula/mscgen.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Mscgen <Formula
+ url 'http://www.mcternan.me.uk/mscgen/software/mscgen-src-0.17.tar.gz'
+ homepage 'http://www.mcternan.me.uk/mscgen/'
+ md5 'b3a084a31070a0db2e0bb40a35825fac'
+
+ depends_on 'pkg-config'
+ depends_on 'gd' => :recommended
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end