Install Ubuntu 12.04 LTS dependencies for Travis CI
[folly.git] / folly / bootstrap-osx-homebrew.sh
diff --git a/folly/bootstrap-osx-homebrew.sh b/folly/bootstrap-osx-homebrew.sh
deleted file mode 100755 (executable)
index 688ce4d..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash -x
-# The only prerequisite should be homebrew. If something doesn't work out of
-# the box with just homebrew, let's fix it.
-
-# fail fast
-set -e
-
-brewget() {
-    brew install $@ || brew upgrade $@
-}
-
-# tool dependencies: autotools and scons (for double-conversion)
-brewget autoconf automake libtool
-
-# dependencies
-brewget glog gflags boost libevent double-conversion
-
-autoreconf -i
-./configure
-
-pushd test
-test -e gtest-1.7.0.zip || {
-    curl -O https://googletest.googlecode.com/files/gtest-1.7.0.zip
-    unzip gtest-1.7.0.zip
-}
-popd