51 lines
1.2 KiB
Ruby
51 lines
1.2 KiB
Ruby
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'
|
|
|
|
if build.head?
|
|
depends_on :automake
|
|
depends_on :libtool
|
|
end
|
|
|
|
depends_on :freetype
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'glm' => :build
|
|
|
|
depends_on 'boost'
|
|
depends_on 'glew'
|
|
depends_on 'jpeg'
|
|
depends_on 'pcre'
|
|
depends_on 'sdl'
|
|
depends_on 'sdl_image'
|
|
|
|
def patches
|
|
# Fix for API change in boost 1.50.0; can be removed in next version
|
|
# http://code.google.com/p/gource/issues/detail?id=162
|
|
"https://github.com/acaudwell/Gource/commit/408371e10f931e2330ff94bd7291b5d1c8c80e9b.patch"
|
|
end
|
|
|
|
def install
|
|
# For non-/usr/local installs
|
|
ENV.append "CXXFLAGS", "-I#{HOMEBREW_PREFIX}/include"
|
|
|
|
system "autoreconf -f -i" if 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
|