aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-09-06 11:43:49 -0700
committerAdam Vandenberg2010-09-06 11:43:49 -0700
commit07b5f7fe90339d753915bc2472ffd116c0586cdf (patch)
treed00274a11d4a08fd2d500acbce1b5a8c23a810cf /Library
parent64a5be27ce4031d9c744556eda8cbdf79166313c (diff)
downloadhomebrew-07b5f7fe90339d753915bc2472ffd116c0586cdf.tar.bz2
pkg-config 0.25
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/pkg-config.rb15
1 files changed, 11 insertions, 4 deletions
diff --git a/Library/Formula/pkg-config.rb b/Library/Formula/pkg-config.rb
index 14c38ecfa..e215ac2eb 100644
--- a/Library/Formula/pkg-config.rb
+++ b/Library/Formula/pkg-config.rb
@@ -2,12 +2,19 @@ require 'formula'
class PkgConfig <Formula
homepage 'http://pkgconfig.freedesktop.org'
- url 'http://pkgconfig.freedesktop.org/releases/pkg-config-0.23.tar.gz'
- md5 'd922a88782b64441d06547632fd85744'
+ url 'http://pkgconfig.freedesktop.org/releases/pkg-config-0.25.tar.gz'
+ md5 'a3270bab3f4b69b7dc6dbdacbcae9745'
def install
- paths=%W[#{HOMEBREW_PREFIX}/lib/pkgconfig /usr/local/lib/pkgconfig /usr/lib/pkgconfig /usr/X11/lib/pkgconfig].uniq
- system "./configure", "--with-pc-path=#{paths*':'}", "--disable-debug", "--prefix=#{prefix}"
+ paths = %W[
+ #{HOMEBREW_PREFIX}/lib/pkgconfig
+ /usr/local/lib/pkgconfig
+ /usr/lib/pkgconfig
+ /usr/X11/lib/pkgconfig
+ ].uniq
+ system "./configure", "--disable-debug",
+ "--prefix=#{prefix}",
+ "--with-pc-path=#{paths*':'}"
system "make install"
end
end \ No newline at end of file