blob: fb495665a67ba7ac62f3652b6a8d5fc7983e3fad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  | 
require 'formula'
class Pstoedit < Formula
  homepage 'http://www.pstoedit.net'
  url 'https://sourceforge.net/projects/pstoedit/files/pstoedit/3.60/pstoedit-3.60.tar.gz'
  sha1 '649ade3d873429548eb6dd9f3e13cb79a8d6a1a2'
  depends_on 'pkg-config' => :build
  depends_on 'plotutils'
  depends_on 'ghostscript'
  depends_on 'imagemagick'
  def install
    ENV.deparallelize
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
  |