blob: 7e0f66f609063239bc4a05faa27e78204b9b2741 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  | 
require 'formula'
class Gource < Formula
  homepage 'http://code.google.com/p/gource/'
  url 'http://gource.googlecode.com/files/gource-0.38.tar.gz'
  sha1 '78f8c2064114313851f53b657d12db28abb89fae'
  head 'https://github.com/acaudwell/Gource.git'
  depends_on 'glm' => :build
  depends_on 'pkg-config' => :build
  depends_on 'boost'
  depends_on 'glew'
  depends_on 'jpeg'
  depends_on 'pcre'
  depends_on 'sdl'
  depends_on 'sdl_image'
  if ARGV.build_head? and MacOS.xcode_version >= "4.3"
    depends_on "automake" => :build
    depends_on "libtool" => :build
  end
  def install
    ENV.x11 # Put freetype-config in path
    # For non-/usr/local installs
    ENV.append "CXXFLAGS", "-I#{HOMEBREW_PREFIX}/include"
    system "autoreconf -f -i" if ARGV.build_head?
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--disable-sdltest",
                          "--disable-freetypetest"
    system "make install"
  end
  def test
    cd HOMEBREW_REPOSITORY do
      system "#{bin}/gource"
    end
  end
end
  |