117 lines
3.5 KiB
Ruby
117 lines
3.5 KiB
Ruby
class Gspell < Formula
|
|
desc "Flexible API to implement spellchecking in GTK+ applications"
|
|
homepage "https://wiki.gnome.org/Projects/gspell"
|
|
url "https://download.gnome.org/sources/gspell/0.2/gspell-0.2.3.tar.xz"
|
|
sha256 "e3bfa90a04f660efb1e5bcb182ee8d07d13f78817cccd006992534261b633510"
|
|
|
|
bottle do
|
|
sha256 "c6633e8f395f042c59dfe19841413261a3735f8ce7eba52b6aac48c542ea01ed" => :el_capitan
|
|
sha256 "84f887139c54fafe37e41324a8573ee986ad053cc03bed3fa26f89e4951a8443" => :yosemite
|
|
sha256 "69443dbcf313c29058029163bfaa9fa1c2f10cf803ed7f1675919b063a765bb7" => :mavericks
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "gtk-mac-integration"
|
|
depends_on "enchant"
|
|
depends_on "iso-codes"
|
|
depends_on "vala" => :recommended
|
|
|
|
# ensures compilation on Mac OS X
|
|
# submitted upstream as https://bugzilla.gnome.org/show_bug.cgi?id=759704
|
|
patch :DATA
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<-EOS.undent
|
|
#include <gspell/gspell.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
const GList *list = gspell_language_get_available();
|
|
return 0;
|
|
}
|
|
EOS
|
|
atk = Formula["atk"]
|
|
cairo = Formula["cairo"]
|
|
enchant = Formula["enchant"]
|
|
fontconfig = Formula["fontconfig"]
|
|
freetype = Formula["freetype"]
|
|
gdk_pixbuf = Formula["gdk-pixbuf"]
|
|
gettext = Formula["gettext"]
|
|
glib = Formula["glib"]
|
|
gtkx3 = Formula["gtk+3"]
|
|
gtk_mac_integration = Formula["gtk-mac-integration"]
|
|
harfbuzz = Formula["harfbuzz"]
|
|
libepoxy = Formula["libepoxy"]
|
|
libpng = Formula["libpng"]
|
|
pango = Formula["pango"]
|
|
pixman = Formula["pixman"]
|
|
flags = (ENV.cflags || "").split + (ENV.cppflags || "").split + (ENV.ldflags || "").split
|
|
flags += %W[
|
|
-I#{atk.opt_include}/atk-1.0
|
|
-I#{cairo.opt_include}/cairo
|
|
-I#{enchant.opt_include}/enchant
|
|
-I#{fontconfig.opt_include}
|
|
-I#{freetype.opt_include}/freetype2
|
|
-I#{gdk_pixbuf.opt_include}/gdk-pixbuf-2.0
|
|
-I#{gettext.opt_include}
|
|
-I#{glib.opt_include}/gio-unix-2.0/
|
|
-I#{glib.opt_include}/glib-2.0
|
|
-I#{glib.opt_lib}/glib-2.0/include
|
|
-I#{gtk_mac_integration.opt_include}/gtkmacintegration
|
|
-I#{gtkx3.opt_include}/gtk-3.0
|
|
-I#{harfbuzz.opt_include}/harfbuzz
|
|
-I#{include}/gspell-1
|
|
-I#{libepoxy.opt_include}
|
|
-I#{libpng.opt_include}/libpng16
|
|
-I#{pango.opt_include}/pango-1.0
|
|
-I#{pixman.opt_include}/pixman-1
|
|
-DMAC_INTEGRATION
|
|
-D_REENTRANT
|
|
-L#{atk.opt_lib}
|
|
-L#{cairo.opt_lib}
|
|
-L#{gdk_pixbuf.opt_lib}
|
|
-L#{gettext.opt_lib}
|
|
-L#{glib.opt_lib}
|
|
-L#{gtkx3.opt_lib}
|
|
-L#{lib}
|
|
-L#{pango.opt_lib}
|
|
-latk-1.0
|
|
-lcairo
|
|
-lcairo-gobject
|
|
-lgdk-3
|
|
-lgdk_pixbuf-2.0
|
|
-lgio-2.0
|
|
-lglib-2.0
|
|
-lgobject-2.0
|
|
-lgspell-1
|
|
-lgtk-3
|
|
-lintl
|
|
-lpango-1.0
|
|
-lpangocairo-1.0
|
|
]
|
|
system ENV.cc, "test.c", "-o", "test", *flags
|
|
system "./test"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/gspell/Makefile.in b/gspell/Makefile.in
|
|
index d97ce61..d0b6779 100644
|
|
--- a/gspell/Makefile.in
|
|
+++ b/gspell/Makefile.in
|
|
@@ -481,7 +481,8 @@ AM_CPPFLAGS = \
|
|
-I$(top_srcdir) \
|
|
$(WARN_CFLAGS) \
|
|
$(DEP_CFLAGS) \
|
|
- $(GTK_MAC_CFLAGS)
|
|
+ $(GTK_MAC_CFLAGS) \
|
|
+ -xobjective-c
|
|
|
|
AM_LDFLAGS = $(WARN_LDFLAGS)
|
|
BUILT_SOURCES = \
|