2010-02-12 00:48:54 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Gource < Formula
|
2010-02-12 00:48:54 +00:00
|
|
|
homepage 'http://code.google.com/p/gource/'
|
2012-04-20 16:57:19 +00:00
|
|
|
url 'http://gource.googlecode.com/files/gource-0.38.tar.gz'
|
|
|
|
sha1 '78f8c2064114313851f53b657d12db28abb89fae'
|
2012-07-07 18:08:22 +00:00
|
|
|
|
2011-05-27 05:02:55 +00:00
|
|
|
head 'https://github.com/acaudwell/Gource.git'
|
2010-02-12 00:48:54 +00:00
|
|
|
|
2012-08-31 20:58:04 +00:00
|
|
|
if build.head?
|
2012-07-07 18:08:22 +00:00
|
|
|
depends_on :automake
|
|
|
|
depends_on :libtool
|
|
|
|
end
|
2012-04-20 16:57:19 +00:00
|
|
|
|
2012-08-31 20:58:04 +00:00
|
|
|
depends_on :freetype
|
2012-07-07 18:08:22 +00:00
|
|
|
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
depends_on 'glm' => :build
|
|
|
|
|
2012-04-20 16:57:19 +00:00
|
|
|
depends_on 'boost'
|
|
|
|
depends_on 'glew'
|
2010-02-12 00:48:54 +00:00
|
|
|
depends_on 'jpeg'
|
|
|
|
depends_on 'pcre'
|
2012-04-20 16:57:19 +00:00
|
|
|
depends_on 'sdl'
|
|
|
|
depends_on 'sdl_image'
|
2010-02-12 00:48:54 +00:00
|
|
|
|
2012-08-17 18:53:35 +00:00
|
|
|
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
|
|
|
|
|
2010-02-12 00:48:54 +00:00
|
|
|
def install
|
2010-07-31 17:25:49 +00:00
|
|
|
# For non-/usr/local installs
|
|
|
|
ENV.append "CXXFLAGS", "-I#{HOMEBREW_PREFIX}/include"
|
|
|
|
|
2012-08-31 20:58:04 +00:00
|
|
|
system "autoreconf -f -i" if build.head?
|
2010-02-12 00:48:54 +00:00
|
|
|
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--disable-sdltest",
|
|
|
|
"--disable-freetypetest"
|
|
|
|
system "make install"
|
|
|
|
end
|
2010-09-26 16:46:36 +00:00
|
|
|
|
|
|
|
def test
|
2012-02-21 06:04:21 +00:00
|
|
|
cd HOMEBREW_REPOSITORY do
|
2011-09-01 20:00:28 +00:00
|
|
|
system "#{bin}/gource"
|
2010-09-26 16:46:36 +00:00
|
|
|
end
|
|
|
|
end
|
2010-02-12 00:48:54 +00:00
|
|
|
end
|