diff options
| author | Eric Schrijver | 2012-08-14 23:40:20 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2012-10-01 21:26:28 -0700 |
| commit | d20a094149189cfaa4e17bda4a0474ce5b526804 (patch) | |
| tree | 65588d9dac9a19b77ae66478288f257e1e962427 /Library/Formula | |
| parent | 5cbd0ebd58790a994c40ce4178c6cda089c5319a (diff) | |
| download | homebrew-d20a094149189cfaa4e17bda4a0474ce5b526804.tar.bz2 | |
eot-utils 1.1
Closes #14187.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/eot-utils.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/eot-utils.rb b/Library/Formula/eot-utils.rb new file mode 100644 index 000000000..55b45c5c1 --- /dev/null +++ b/Library/Formula/eot-utils.rb @@ -0,0 +1,12 @@ +require 'formula' + +class EotUtils < Formula + homepage 'http://www.w3.org/Tools/eot-utils/' + url 'http://www.w3.org/Tools/eot-utils/eot-utilities-1.1.tar.gz' + sha1 '7e8a68ba1ae4b533113e7965aa2cca133367f31f' + + def install + system "./configure", "--prefix=#{prefix}" + system "make install" + end +end |
