diff options
| author | Brian Smyth | 2009-10-08 13:21:43 -0400 |
|---|---|---|
| committer | Brian Smyth | 2009-10-08 13:23:05 -0400 |
| commit | dfbb1b36c6967c0d2d9c432eb08a92619021a9dd (patch) | |
| tree | be43d4ad00d0df628abd6622c35e21af82decb0f /Library | |
| parent | 404e6b1d68262e1f3f5bda671c589036221721b5 (diff) | |
| download | homebrew-dfbb1b36c6967c0d2d9c432eb08a92619021a9dd.tar.bz2 | |
Fondu formula.
A set of programs to interconvert between mac font formats and pfb, ttf,
otf and bdf files on unix.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/fondu.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/fondu.rb b/Library/Formula/fondu.rb new file mode 100644 index 000000000..7f0a51695 --- /dev/null +++ b/Library/Formula/fondu.rb @@ -0,0 +1,16 @@ +require 'brewkit' + +class Fondu <Formula + url 'http://fondu.sourceforge.net/fondu_src-060102.tgz' + md5 'e20861beacddc1ab392bef7813641bf8' + homepage 'http://fondu.sourceforge.net/' + + def install + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "make" + bin.install 'fondu' + bin.install 'ufond' + man1.install 'fondu.1' + man1.install 'ufond.1' + end +end |
