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