aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/t1lib.rb
blob: 0d952ad6ea5d4cb56478cdb2a0c88616ff2bd27e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class T1lib < Formula
  homepage 'http://www.t1lib.org/'
  url 'http://www.ibiblio.org/pub/Linux/libs/graphics/t1lib-5.1.2.tar.gz'
  sha1 '4b4fc22c8688eefaaa8cfc990f0039f95f4287de'

  bottle do
    sha1 "d17c526466d2b29f46af3e8f9cacdcddf64f1879" => :mavericks
    sha1 "100577d05c39018442328dec9a604b2302f171c6" => :mountain_lion
    sha1 "008ed36af21397ae34d6ec47aff7301aa599d890" => :lion
  end

  def install
    system './configure', "--prefix=#{prefix}"
    system 'make', 'without_doc'
    system 'make', 'install'
    share.install 'Fonts' => 'fonts'
  end
end