blob: b7b42fbf11db24010258a83291cf0eb7f39613f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Ttf2eot < Formula
homepage 'http://code.google.com/p/ttf2eot/'
url 'http://ttf2eot.googlecode.com/files/ttf2eot-0.0.2-2.tar.gz'
sha1 'c9a64216e7a090cb50f7a5074865218623dea75d'
def install
system "make"
bin.install 'ttf2eot'
end
end
|