homebrew-core/Formula/autotrace.rb

24 lines
673 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Autotrace < Formula
homepage 'http://autotrace.sourceforge.net'
2012-07-30 21:08:07 +00:00
url 'http://downloads.sourceforge.net/project/autotrace/AutoTrace/0.31.1/autotrace-0.31.1.tar.gz'
sha1 '679e4912528030b86f23db5b99e60f8e7df883fd'
2012-07-30 21:08:07 +00:00
option 'without-imagemagick', 'Compile without ImageMagick'
2012-07-30 21:08:07 +00:00
depends_on 'imagemagick' unless build.include? 'without-imagemagick'
def install
2012-07-30 21:08:07 +00:00
args = ["--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"]
2012-07-30 21:08:07 +00:00
args << "--without-magick" if build.include? 'without-imagemagick'
system "./configure", *args
system "make install"
end
2011-03-10 05:11:03 +00:00
end