aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorNibbles McGurk2011-09-13 01:47:40 -0700
committerCharlie Sharpsteen2011-09-14 03:56:53 -0700
commitab6dfeb9130c94bd3123cc9cebca055dababea41 (patch)
tree7160d2fe7babb891a12205bfa2fb45a25b956bfe /Library/Formula
parenta403f9b9ea460a0fb723cd7463e8623412fff901 (diff)
downloadhomebrew-ab6dfeb9130c94bd3123cc9cebca055dababea41.tar.bz2
t1utils: Update to 1.37
t1utils gets an update to 1.37 from 1.35. This archive creates a group of CLI programs for manipulating Type 1 fonts, otherwise known as Adobe Type 1 or Postscript fonts. Added a brew test function and the --disable-dependency bit. Closes #7608. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/t1utils.rb12
1 files changed, 8 insertions, 4 deletions
diff --git a/Library/Formula/t1utils.rb b/Library/Formula/t1utils.rb
index 830d5f2c8..b11010601 100644
--- a/Library/Formula/t1utils.rb
+++ b/Library/Formula/t1utils.rb
@@ -1,12 +1,16 @@
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'
+ url 'http://www.lcdf.org/type/t1utils-1.37.tar.gz'
+ homepage 'http://www.lcdf.org/type/'
+ sha256 '42bdce77aaf12b33ca6d193e01a2d2c0012f755435a6d25921f94733ee61cec3'
def install
- system "./configure", "--prefix=#{prefix}"
+ system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
+
+ def test
+ system "#{bin}/t1mac --version | head -1"
+ end
end