Last active
December 19, 2015 11:49
-
-
Save mig/5950473 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
build_package_with_readline_and_openssl () { | |
local package_name="$1" | |
{ | |
autoconf | |
./configure --prefix="$PREFIX_PATH" --with-opt-dir="$PREFIX_PATH:`brew --prefix readline`:`brew --prefix openssl`" $CONFIGURE_OPTS | |
make -j 8 | |
make install | |
} >&4 2>&1 | |
} | |
install_package "yaml-0.1.4" "http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz#36c852831d02cf90508c29852361d01b" | |
install_git "1.9.3-p448" "https://github.com/mig/ruby.git" "1.9.3-p448" with_readline_and_openssl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
build_package_with_readline_and_openssl () { | |
local package_name="$1" | |
{ | |
autoconf | |
if [ $(uname) == 'Darwin' ]; then | |
./configure --prefix="$PREFIX_PATH" --with-opt-dir="$PREFIX_PATH:`brew --prefix readline`:`brew --prefix openssl`" $CONFIGURE_OPTS | |
else | |
./configure --prefix="$PREFIX_PATH" --with-opt-dir=$PREFIX_PATH | |
fi | |
make -j 8 | |
make install | |
} >&4 2>&1 | |
} | |
install_package "yaml-0.1.4" "http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz#36c852831d02cf90508c29852361d01b" | |
install_git "1.9.3-p448" "https://github.com/mig/ruby.git" "1.9.3-p448-perf-patched" with_readline_and_openssl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
build_package_with_readline_and_openssl () { | |
local package_name="$1" | |
{ | |
autoconf | |
if [ $(uname) == 'Darwin' ]; then | |
./configure --prefix="$PREFIX_PATH" --with-opt-dir="$PREFIX_PATH:`brew --prefix readline`:`brew --prefix openssl`" $CONFIGURE_OPTS | |
else | |
./configure --prefix="$PREFIX_PATH" --with-opt-dir=$PREFIX_PATH | |
fi | |
make -j 8 | |
make install | |
} >&4 2>&1 | |
} | |
install_package "yaml-0.1.4" "http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz#36c852831d02cf90508c29852361d01b" | |
install_git "1.9.3-p484" "https://github.com/mig/ruby.git" "1.9.3-p484" with_readline_and_openssl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment