Skip to content

Instantly share code, notes, and snippets.

@hirokazumiyaji
Created January 6, 2016 22:44
Show Gist options
  • Save hirokazumiyaji/26a189fe23edc7000c8c to your computer and use it in GitHub Desktop.
Save hirokazumiyaji/26a189fe23edc7000c8c to your computer and use it in GitHub Desktop.
itamae recipe apache small light
execute "apt-get update"
execute "download libjpeg-turbo.deb" do
command "wget http://sourceforge.net/projects/libjpeg-turbo/files/#{node[:libjpegturbo][:version]}/libjpeg-turbo-official_#{node[:libjpegturbo][:version]}_amd64.deb"
cwd "/tmp"
not_if "test -d /opt/libjpeg-turbo"
end
execute "install libjpeg-turbo" do
command "dpkg -i libjpeg-turbo-official_#{node[:libjpegturbo][:version]}_amd64.deb"
cwd "/tmp"
not_if "test -d /opt/libjpeg-turbo"
end
file "/etc/ld.so.conf.d/libjpeg-turbo.conf" do
content "/opt/libjpeg-turbo/lib64/"
end
execute "apt-get build-dep -y imagemagick"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment