FEATURE: Download ImageMagick from a stable/secure source
[discourse_docker.git] / image / base / install-pngquant
CommitLineData
fdc85645 1#!/bin/bash
3fe4e441 2VERSION=2.8.0
fdc85645 3cd /tmp
72e3cb03 4wget https://github.com/pornel/pngquant/archive/$VERSION.tar.gz
fdc85645
S
5tar zxf $VERSION.tar.gz
6cd pngquant-$VERSION
7./configure
8make && make install
9cd /
10rm -fr /tmp/pngq*
11rm -fr /tmp/$VERSION*