69 lines
2.1 KiB
Ruby
69 lines
2.1 KiB
Ruby
class Goffice < Formula
|
|
desc "Gnumeric spreadsheet program"
|
|
homepage "https://developer.gnome.org/goffice/"
|
|
url "https://download.gnome.org/sources/goffice/0.10/goffice-0.10.27.tar.xz"
|
|
sha256 "3717b400fd190f18cf1dd7a16e1991b1f7c7cbdfeb1993656e7972347168d8c0"
|
|
|
|
bottle do
|
|
sha256 "8bcaebdbad7414bc4605b5f3c6e591eeff7f3b881f7f9e9c38a46fb8b4cac46e" => :el_capitan
|
|
sha256 "189507e849c0ecc18396b54a6b67fe0eff65bed367dadce003758a794a762718" => :yosemite
|
|
sha256 "fe3b3b1b9677c586476edf7933704b22bab55390c76f93380e327203698aa2a8" => :mavericks
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/GNOME/goffice.git"
|
|
depends_on "automake" => :build
|
|
depends_on "autoconf" => :build
|
|
depends_on "gnome-common" => :build
|
|
depends_on "gtk-doc" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
depends_on "intltool" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "atk"
|
|
depends_on "cairo"
|
|
depends_on "gettext"
|
|
depends_on "gdk-pixbuf"
|
|
depends_on "gtk+3"
|
|
depends_on "libgsf"
|
|
depends_on "librsvg"
|
|
depends_on "pango"
|
|
depends_on "pcre"
|
|
|
|
def install
|
|
args = %W[--disable-dependency-tracking --prefix=#{prefix}]
|
|
if build.head?
|
|
system "./autogen.sh", *args
|
|
else
|
|
system "./configure", *args
|
|
end
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<-EOS.undent
|
|
#include <goffice/goffice.h>
|
|
int main()
|
|
{
|
|
void
|
|
libgoffice_init (void);
|
|
void
|
|
libgoffice_shutdown (void);
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cc, "-I#{include}/libgoffice-0.10",
|
|
"-I#{Formula["glib"].opt_include}/glib-2.0",
|
|
"-I#{Formula["glib"].opt_lib}/glib-2.0/include",
|
|
"-I#{Formula["libgsf"].opt_include}/libgsf-1",
|
|
"-I/usr/include/libxml2",
|
|
"-I#{Formula["gtk+3"].opt_include}/gtk-3.0",
|
|
"-I#{Formula["pango"].opt_include}/pango-1.0",
|
|
"-I#{Formula["cairo"].opt_include}/cairo",
|
|
"-I#{Formula["gdk-pixbuf"].opt_include}/gdk-pixbuf-2.0",
|
|
"-I#{Formula["atk"].opt_include}/atk-1.0",
|
|
testpath/"test.c", "-o", testpath/"test"
|
|
system "./test"
|
|
end
|
|
end
|