blob: 16f2b7613380ff0c2b272323a7a21d1223650a94 (
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 'https://ttf2eot.googlecode.com/files/ttf2eot-0.0.2-2.tar.gz'
  sha1 'c9a64216e7a090cb50f7a5074865218623dea75d'
  def install
    system "make"
    bin.install 'ttf2eot'
  end
end
 |