diff options
| author | Sebastian Staudt | 2012-04-20 18:57:19 +0200 |
|---|---|---|
| committer | Charlie Sharpsteen | 2012-04-22 12:10:05 -0700 |
| commit | d36e400d8ae8296eef85c1181794b91c9adb5374 (patch) | |
| tree | 11f73fea022f077da0ab852307dd0006ac366a28 /Library/Formula/gource.rb | |
| parent | a11d5e429bf594f4079ee89005eef8c7896b1025 (diff) | |
| download | homebrew-d36e400d8ae8296eef85c1181794b91c9adb5374.tar.bz2 | |
gource: Update to 0.38
Gource now requires boost and glm.
Closes #11782.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library/Formula/gource.rb')
| -rw-r--r-- | Library/Formula/gource.rb | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Library/Formula/gource.rb b/Library/Formula/gource.rb index 7126a5657..7e0f66f60 100644 --- a/Library/Formula/gource.rb +++ b/Library/Formula/gource.rb @@ -2,16 +2,19 @@ require 'formula' class Gource < Formula homepage 'http://code.google.com/p/gource/' - url 'http://gource.googlecode.com/files/gource-0.37.tar.gz' - sha1 '87d88b5cbf312e160e55582f8e187c87b3df097d' + 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 'sdl' - depends_on 'sdl_image' + + depends_on 'boost' + depends_on 'glew' depends_on 'jpeg' depends_on 'pcre' - depends_on 'glew' + depends_on 'sdl' + depends_on 'sdl_image' if ARGV.build_head? and MacOS.xcode_version >= "4.3" depends_on "automake" => :build |
