09a71f084d
Closes Homebrew/homebrew#14187. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
307 B
Ruby
12 lines
307 B
Ruby
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
|