aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libdrawtext.rb
blob: 30955e210f184d952fb0f6ac02a91dbb5cc5f58d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Libdrawtext < Formula
  homepage 'http://nuclear.mutantstargoat.com/sw/libdrawtext/'
  url 'http://nuclear.mutantstargoat.com/sw/libdrawtext/libdrawtext-0.1.tar.gz'
  sha1 '0d7166bbb1479553abf82b71a56ec565d861fe81'

  depends_on 'pkg-config' => :build
  depends_on :freetype
  depends_on 'glew'

  def install
    system "./configure", "--disable-dbg", "--enable-opt",
           "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make", "install"
  end
end