gtkspell3 3.0.7
version bump audit --strict compliance Closes Homebrew/homebrew#42091. Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
This commit is contained in:
parent
0a5f44fbde
commit
2d2a5c9482
1 changed files with 76 additions and 8 deletions
|
@ -1,18 +1,86 @@
|
|||
require 'formula'
|
||||
|
||||
class Gtkspell3 < Formula
|
||||
desc "Gtk widget for highlighting and replacing misspelled words"
|
||||
homepage 'http://gtkspell.sourceforge.net/'
|
||||
url 'http://gtkspell.sourceforge.net/download/gtkspell3-3.0.3.tar.gz'
|
||||
sha1 '48197eb666e061223901fea35f54c90925f128a8'
|
||||
homepage "http://gtkspell.sourceforge.net/"
|
||||
url "http://gtkspell.sourceforge.net/download/gtkspell3-3.0.7.tar.gz"
|
||||
sha256 "13f2e6d3e2554cc24253ef592074b28c117db33b7a4465c98c69a3e0a4fa3cc2"
|
||||
|
||||
depends_on "pkg-config" => :build
|
||||
depends_on "intltool" => :build
|
||||
depends_on "gtk+3"
|
||||
depends_on "enchant"
|
||||
depends_on "intltool" => :build
|
||||
depends_on "pkg-config" => :build
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug", "--prefix=#{prefix}"
|
||||
system "make install"
|
||||
system "make", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
(testpath/"test.c").write <<-EOS.undent
|
||||
#include <gtkspell/gtkspell.h>
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
GList *list = gtk_spell_checker_get_language_list();
|
||||
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"]
|
||||
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#{gtkx3.opt_include}/gtk-3.0
|
||||
-I#{include}/gtkspell-3.0
|
||||
-I#{libepoxy.opt_include}
|
||||
-I#{libpng.opt_include}/libpng16
|
||||
-I#{pango.opt_include}/pango-1.0
|
||||
-I#{pixman.opt_include}/pixman-1
|
||||
-D_REENTRANT
|
||||
-L#{atk.opt_lib}
|
||||
-L#{cairo.opt_lib}
|
||||
-L#{enchant.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
|
||||
-lenchant
|
||||
-lgdk-3
|
||||
-lgdk_pixbuf-2.0
|
||||
-lgio-2.0
|
||||
-lglib-2.0
|
||||
-lgmodule-2.0
|
||||
-lgobject-2.0
|
||||
-lgtk-3
|
||||
-lgtkspell3-3
|
||||
-lintl
|
||||
-lpango-1.0
|
||||
-lpangocairo-1.0
|
||||
]
|
||||
system ENV.cc, "test.c", "-o", "test", *flags
|
||||
system "./test"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue