70 lines
2.2 KiB
Ruby
70 lines
2.2 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.23.tar.xz"
|
|
sha256 "1325fc38f2476977bd8d71588ccb2a57aa418260406b7c28a20098b6b4e33f9f"
|
|
|
|
bottle do
|
|
sha256 "4d638e6d6f17cab468162722cd5facbb4f67320682b338957afce8d480397ef3" => :el_capitan
|
|
sha256 "4b08f3f552e838833b51e258c9f08a58d69abeccb9fb1a78240e9d3edad5dc1a" => :yosemite
|
|
sha256 "543790e68fe098849ec4dc5815f0c75c7aa0cdd63897db56ba07806afb145676" => :mavericks
|
|
sha256 "a16a9c78288020b9c1cec62048eff2ac34bb933d4dc6d1eaea9cdfdb34d40cce" => :mountain_lion
|
|
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
|