base image update
[discourse_docker.git] / image / base / install-gifsicle
1 #!/bin/bash
2 set -e
3 VERSION=1.88
4 cd /tmp
5 curl -O http://www.lcdf.org/gifsicle/gifsicle-$VERSION.tar.gz
6 tar zxf gifsicle-$VERSION.tar.gz
7 cd gifsicle-$VERSION
8 ./configure
9 make install
10 cd /
11 rm -fr /tmp/gifsicle*