http://www.linuxfromscratch.org/blfs/view/svn/multimedia/libsndfile.html
wget http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.26.tar.gz
tar xf libsndfile-1.0.26.tar.gz
cd libsndfile-1.0.26
./configure
make
#!/usr/bin/env sh | |
wget https://dl.eff.org/certbot-auto | |
chmod +x certbot-auto | |
unset PYTHON_INSTALL_LAYOUT | |
pip install virtualenv --upgrade --user | |
pip install zope.interface --upgrade --user | |
# Remove old installation |
# http://stackoverflow.com/questions/27177327/setting-up-django-with-geodjango-support-in-aws-beanstalk-or-ec2-instance | |
# http://rpmfind.net/linux/rpm2html/search.php?query=lib64jpeg8 | |
# http://rpmfind.net/linux/rpm2html/search.php?query=lib64poppler5 | |
# install postgresql repo | |
sudo yum install https://download.postgresql.org/pub/repos/yum/9.5/redhat/rhel-6-x86_64/pgdg-ami201503-95-9.5-3.noarch.rpm | |
# add priority=1 to perfer this repo over amzn-main | |
vim /etc/yum.repos.d/pgdg-95-ami201503.repo |
# Erlang | |
wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb && sudo dpkg -i erlang-solutions_1.0_all.deb | |
sudo apt-get update | |
sudo apt-get install esl-erlang | |
# Elixir | |
sudo apt-get install elixir | |
# nodejs (when using brunch) | |
sudo apt-get install curl |
http://www.linuxfromscratch.org/blfs/view/svn/multimedia/libsndfile.html
wget http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.26.tar.gz
tar xf libsndfile-1.0.26.tar.gz
cd libsndfile-1.0.26
./configure
make
# Remove previous installations | |
sudo apt-get remove vim vim-runtime vim-tiny vim-common | |
# Install dependencies | |
sudo apt-get install libncurses5-dev python-dev libperl-dev ruby-dev liblua5.2-dev | |
# Fix liblua paths | |
sudo ln -s /usr/include/lua5.2 /usr/include/lua | |
sudo ln -s /usr/lib/x86_64-linux-gnu/liblua5.2.so /usr/local/lib/liblua.so |