Skip to content

Instantly share code, notes, and snippets.

@chrisjz
Last active October 11, 2017 05:08
Show Gist options
  • Save chrisjz/4bcb8debc67218304947ebd45e2f8cca to your computer and use it in GitHub Desktop.
Save chrisjz/4bcb8debc67218304947ebd45e2f8cca to your computer and use it in GitHub Desktop.
Install LAME on Amazon Linux
#!/bin/sh
wget -O lame-3.99.5.tar.gz https://sourceforge.net/projects/lame/files/lame/3.99/lame-3.99.5.tar.gz/download
tar -xvf lame-3.99.5.tar.gz
rm lame-3.99.5.tar.gz
cd lame-3.99.5
./configure
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment