aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMisty De Meo2013-09-20 10:12:40 -0700
committerMisty De Meo2013-09-20 10:13:03 -0700
commit51f226e14af5eb506db64600b77f1a7df3de9693 (patch)
tree8c5f7bc8ef33cfc1a095a5c391bcaa4ad1a50fb9 /Library
parent45767e0534d30d543d2b9701f0b3ac44a2174199 (diff)
downloadhomebrew-51f226e14af5eb506db64600b77f1a7df3de9693.tar.bz2
metaproxy: use boost 1.54
metaproxy was incorrectly linking against boost 1.54.0 despite being built against 1.49.0, so it was unusable. It appears to be compatible with 1.54.0 now, however, so just use that instead.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/metaproxy.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/Library/Formula/metaproxy.rb b/Library/Formula/metaproxy.rb
index 274a23397..3cde73915 100644
--- a/Library/Formula/metaproxy.rb
+++ b/Library/Formula/metaproxy.rb
@@ -7,13 +7,11 @@ class Metaproxy < Formula
depends_on 'pkg-config' => :build
depends_on 'yazpp'
- depends_on 'boost149'
+ depends_on 'boost1'
def install
- old_boost = Formula.factory("boost149")
system "./configure", "--disable-dependency-tracking",
- "--prefix=#{prefix}",
- "--with-boost=#{old_boost.prefix}"
+ "--prefix=#{prefix}"
system "make install"
end
end