aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/t1utils.rb
diff options
context:
space:
mode:
authorkmowery2010-01-21 21:11:26 -0800
committerAdam Vandenberg2010-04-01 12:44:36 -0700
commit05a998484db64e39b879926865e9da8c39771e83 (patch)
treecc51c7cc398a92012687d7740e21e37b1646159b /Library/Formula/t1utils.rb
parentf9998de995809075234fe501d2a18b31788bba79 (diff)
downloadhomebrew-05a998484db64e39b879926865e9da8c39771e83.tar.bz2
t1utils 1.35
Utilities for dealing with Type 1 fonts. Dependency of Lilypond. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/t1utils.rb')
-rw-r--r--Library/Formula/t1utils.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/t1utils.rb b/Library/Formula/t1utils.rb
new file mode 100644
index 000000000..6a0b935fe
--- /dev/null
+++ b/Library/Formula/t1utils.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class T1utils <Formula
+ url 'http://www.lcdf.org/~eddietwo/type/t1utils-1.35.tar.gz'
+ homepage 'http://www.lcdf.org/~eddietwo/type/'
+ md5 '20e4cd3ffe81f01eff02a5e2320d95b7'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make install"
+ end
+end