diff options
| author | Adam Vandenberg | 2010-07-15 07:11:41 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-07-15 07:11:41 -0700 |
| commit | d97bd7636ad37cd6452c4569b59129903531efc8 (patch) | |
| tree | 4f27590f0dd449949a128ab76ec01279477e7eea /Library/Formula | |
| parent | 1b5830700e19a74a928a5b3bbba20a30f111b49d (diff) | |
| download | homebrew-d97bd7636ad37cd6452c4569b59129903531efc8.tar.bz2 | |
Update Pianobar
* Peg to a stable revision
* Now uses make instead of cmake
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/pianobar.rb | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/Library/Formula/pianobar.rb b/Library/Formula/pianobar.rb index bd3c1ed51..e2425ac94 100644 --- a/Library/Formula/pianobar.rb +++ b/Library/Formula/pianobar.rb @@ -1,19 +1,17 @@ require 'formula' class Pianobar <Formula - head 'git://github.com/PromyLOPh/pianobar.git' - url 'http://github.com/PromyLOPh/pianobar/tarball/master' + head 'git://github.com/PromyLOPh/pianobar.git', :revison => '8ac0b9532a34383d22b76ff7e274e32780891dc1' version '2a1e81927ef6fbf0d9c5' homepage 'http://github.com/PromyLOPh/pianobar/' - md5 '889c659210f89b5467c655449f09100b' - depends_on 'cmake' - depends_on 'libao' - depends_on 'mad' - depends_on 'faad2' + depends_on 'libao' + depends_on 'mad' + depends_on 'faad2' def install - system "cmake . #{std_cmake_parameters}" - system "make install" + ENV.delete "CFLAGS" + system "make", "PREFIX=#{prefix}" + system "make", "install", "PREFIX=#{prefix}" end end |
