From ca590aa6f29b852ef2ca2fc4b9b57f77b00c1be8 Mon Sep 17 00:00:00 2001 From: Dave Spurr Date: Fri, 24 Aug 2012 14:19:35 +0100 Subject: [PATCH] Add formula for sfnt2woff --- Library/Formula/sfnt2woff.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Library/Formula/sfnt2woff.rb diff --git a/Library/Formula/sfnt2woff.rb b/Library/Formula/sfnt2woff.rb new file mode 100644 index 000000000000..865a08a4a1d1 --- /dev/null +++ b/Library/Formula/sfnt2woff.rb @@ -0,0 +1,16 @@ +require 'formula' + +class Sfnt2woff < Formula + homepage 'http://people.mozilla.com/~jkew/woff/' + url 'http://people.mozilla.com/~jkew/woff/woff-code-latest.zip' + sha1 '59879f1bdeeafce7fc9d4b51406e80d7a4cd0293' + + def install + system 'make all' + bin.install 'sfnt2woff' + end + + def test + system 'sfnt2woff' + end +end \ No newline at end of file