New formula: pstoedit

Converts PostScript and PDF files into other vector formats

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Scott Kyle 2010-11-10 09:42:17 -08:00 committed by Adam Vandenberg
parent 77d1872395
commit 741ff07b94
1 changed files with 19 additions and 0 deletions

19
Formula/pstoedit.rb Normal file
View File

@ -0,0 +1,19 @@
require 'formula'
class Pstoedit <Formula
url 'http://downloads.sourceforge.net/project/pstoedit/pstoedit/3.50/pstoedit-3.50.tar.gz'
homepage 'http://www.pstoedit.net'
md5 '97d649305ad90fab7a569154f17e0916'
depends_on 'libpng'
depends_on 'plotutils'
depends_on 'imagemagick'
depends_on 'ghostscript'
def install
ENV.deparallelize
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end