aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2010-07-15 07:11:41 -0700
committerAdam Vandenberg2010-07-15 07:11:41 -0700
commitd97bd7636ad37cd6452c4569b59129903531efc8 (patch)
tree4f27590f0dd449949a128ab76ec01279477e7eea /Library/Formula
parent1b5830700e19a74a928a5b3bbba20a30f111b49d (diff)
downloadhomebrew-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.rb16
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