diff options
| author | Scott Kyle | 2010-11-10 09:42:17 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2011-01-22 09:52:31 -0800 |
| commit | 2ac936662e18feec5b398a5d3d99372580cd13f5 (patch) | |
| tree | 6665b0d134e2532a97b360145adb7823ac5de62c /Library/Formula/pstoedit.rb | |
| parent | fd8ee4d7678b530dfbb6e83dd3135b5539d7ad56 (diff) | |
| download | homebrew-2ac936662e18feec5b398a5d3d99372580cd13f5.tar.bz2 | |
New formula: pstoedit
Converts PostScript and PDF files into other vector formats
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/pstoedit.rb')
| -rw-r--r-- | Library/Formula/pstoedit.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/pstoedit.rb b/Library/Formula/pstoedit.rb new file mode 100644 index 000000000..3758fc056 --- /dev/null +++ b/Library/Formula/pstoedit.rb @@ -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 |
