aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/psftools.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/psftools.rb')
-rw-r--r--Library/Formula/psftools.rb13
1 files changed, 9 insertions, 4 deletions
diff --git a/Library/Formula/psftools.rb b/Library/Formula/psftools.rb
index edce24b71..d70979932 100644
--- a/Library/Formula/psftools.rb
+++ b/Library/Formula/psftools.rb
@@ -1,5 +1,10 @@
require 'formula'
+class Pc8x8Font < Formula
+ url 'http://www.zone38.net/font/pc8x8.zip'
+ sha1 '4dbd149bb97b5b4f3464fcbda2387a479b09acb7'
+end
+
class Psftools < Formula
url 'http://www.seasip.info/Unix/PSF/psftools-1.0.7.tar.gz'
homepage 'http://www.seasip.demon.co.uk/Unix/PSF/'
@@ -14,10 +19,10 @@ class Psftools < Formula
def test
# The zip file has a fon in it, use fon2fnts to extrat to fnt
mktemp do
- curl "http://www.zone38.net/font/pc8x8.zip", "-O"
- system "/usr/bin/unzip pc8x8.zip"
- system "#{bin}/fon2fnts pc8x8.fon"
- raise unless File.exist? "PC8X8_9.fnt"
+ Pc8x8Font.new.brew do
+ system "#{bin}/fon2fnts pc8x8.fon"
+ raise unless File.exist? "PC8X8_9.fnt"
+ end
end
end
end