Skip to content

Instantly share code, notes, and snippets.

@florianajir
Created July 4, 2019 12:49
Show Gist options
  • Save florianajir/dea8b9a578e52310b23755fe0d41ef37 to your computer and use it in GitHub Desktop.
Save florianajir/dea8b9a578e52310b23755fe0d41ef37 to your computer and use it in GitHub Desktop.
mozjpeg install on Amazon Linux 2
sudo su
yum groupinstall "Development Tools" -y
yum install nasm -y
cd /tmp
wget https://github.com/mozilla/mozjpeg/archive/v3.3.1.tar.gz
tar -xzf v3.3.1.tar.gz
cd mozjpeg-3.3.1
autoreconf -fiv
mkdir build && cd build
sh ../configure
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment