blob: 317b551e9594bbcdb5e9e557a3deabece6c349d0 (
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.61/pstoedit-3.61.tar.gz'
sha1 '426f3746ecb441caa0db401d5880e1ac04a399d5'
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
|