Commit e0821429 authored by Damian Montero's avatar Damian Montero Committed by GitHub

Merge pull request #880 from vince/imagemagick-6

add imagemagick 6 package
parents 4656f674 1232fcfd
require 'package'
class Imagemagick6 < Package
description 'Use ImageMagick to create, edit, compose, or convert bitmap images.'
homepage 'http://www.imagemagick.org/script/index.php'
version '6.9.8.10'
source_url 'https://www.imagemagick.org/download/ImageMagick-6.9.8-10.tar.xz'
source_sha256 '8fc268f6e1bc514b41620e0f3f6c5dd33bfc5169db679e9a5c0455c6edd11810'
depends_on 'pkgconfig'
depends_on "libjpeg"
depends_on "libpng"
depends_on "libtiff"
depends_on "freetype"
def self.build
system "./configure CFLAGS=\" -fPIC\" --without-python"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment