homebrew-core/Formula/goffice.rb
nibbles 2bits 49765e44bb goffice: add depends_on :x11
goffice needs a `depends_on :x11` so that it can find cairo now.

Closes Homebrew/homebrew#13990.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-08 21:14:40 -07:00

20 lines
551 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 :x11
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end