aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mftrace.rb
diff options
context:
space:
mode:
authorkmowery2010-01-21 21:10:42 -0800
committerAdam Vandenberg2010-04-01 12:49:03 -0700
commitad86a1623c980ab68a92ee6bec60a50f31a0248f (patch)
treee4b56d4c9cdc856fe8fb543df329a6c16474a5fa /Library/Formula/mftrace.rb
parent05a998484db64e39b879926865e9da8c39771e83 (diff)
downloadhomebrew-ad86a1623c980ab68a92ee6bec60a50f31a0248f.tar.bz2
mftrace 1.2.15
Dependency for Lilypond Signed-off-by: Adam Vandenberg <flangy@gmail.com> Updated to 1.2.16
Diffstat (limited to 'Library/Formula/mftrace.rb')
-rw-r--r--Library/Formula/mftrace.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/mftrace.rb b/Library/Formula/mftrace.rb
new file mode 100644
index 000000000..18fd4a23a
--- /dev/null
+++ b/Library/Formula/mftrace.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Mftrace <Formula
+ url 'http://lilypond.org/download/sources/mftrace/mftrace-1.2.16.tar.gz'
+ homepage 'http://lilypond.org/mftrace/'
+ md5 '1c65846471db8f10902b96b7b3120da5'
+
+ depends_on 'potrace'
+ depends_on 't1utils'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make install"
+ end
+end