homebrew-core/Formula/goffice.rb
nibbles 2bits b3a0bf8ed0 goffice: fix missing pcre dep
Goffice needs pcre so that it will not error during configure.
Add a dep on `pcre`.

Fixes Homebrew/homebrew#13988

Closes Homebrew/homebrew#14092.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-09 14:52:54 -07:00

21 lines
571 B
Ruby

require 'formula'
class Goffice < Formula
homepage 'http://projects.gnome.org/gnumeric/'
url 'http://ftp.gnome.org/pub/GNOME/sources/goffice/0.8/goffice-0.8.17.tar.bz2'
sha256 'dd8caef5fefffbc53938fa619de9f58e7c4dc71a1803de134065d42138a68c06'
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'intltool'
depends_on 'libgsf'
depends_on 'gtk+'
depends_on 'pcre'
depends_on :x11
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end