dotfiles/setup/imgo.sh

14 lines
305 B
Bash
Raw Normal View History

2012-10-12 14:53:55 +00:00
#!/bin/bash
2012-10-23 08:47:00 +00:00
# Installs imgo CLI image optimizer
2012-10-12 14:53:55 +00:00
# https://github.com/imgo/imgo
2012-10-23 08:47:00 +00:00
2012-10-12 14:53:55 +00:00
brew install exiftool imagemagick optipng libjpeg gifsicle
2012-12-12 08:55:22 +00:00
formulas='pngout.rb defluff.rb cryopng.rb imgo.rb'
2012-10-12 14:53:55 +00:00
for package in $formulas
do
2012-12-12 08:55:22 +00:00
brew install "https://raw.github.com/imgo/imgo-tools/master/Formula/"$package
2012-10-12 14:53:55 +00:00
done