homebrew-core/Formula/potrace.rb

16 lines
454 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Potrace < Formula
homepage 'http://potrace.sourceforge.net'
url 'http://potrace.sourceforge.net/download/potrace-1.11.tar.gz'
sha1 '7296baf27bf35298263cb3ed3df34a38fed0b441'
def install
system "./configure", "--disable-dependency-tracking",
2010-04-01 18:59:52 +00:00
"--prefix=#{prefix}",
"--mandir=#{man}",
"--with-libpotrace"
system "make install"
end
end