116 lines
3.7 KiB
Ruby
116 lines
3.7 KiB
Ruby
class Tepl < Formula
|
|
desc "GNOME Text Editor Product Line"
|
|
homepage "https://gitlab.gnome.org/swilmet/tepl"
|
|
url "https://gitlab.gnome.org/swilmet/tepl.git",
|
|
tag: "6.2.0",
|
|
revision: "34973a0d48ba5a0dd0a776c66bfc0c3f65682d9c"
|
|
license "LGPL-2.1-or-later"
|
|
revision 1
|
|
|
|
bottle do
|
|
sha256 arm64_ventura: "1c9ec2723d505a5d66d701753cf2d318cb956cb702f3a66790d200b5d865cf34"
|
|
sha256 arm64_monterey: "afd66c86e1724521d508e6b78e6e1b698f601570197bd0cd5ad717b660f44f0a"
|
|
sha256 arm64_big_sur: "1217ede948528c5817ebf00c6f45fbc67dc55f6d7f407fefed254a35b0bfca2b"
|
|
sha256 ventura: "5ec0008849dad4e3475f84ab26f52388ea56d198ad96b3fdcf1f81f2e2086609"
|
|
sha256 monterey: "f99e1794bd7a04a432f770e41913e5ac59041441be8281dd1389b6e8ff580d15"
|
|
sha256 big_sur: "54f0f0e7d72108b6fa2475e64b32907dd56740d4300e13cfbddd441d99636072"
|
|
sha256 catalina: "876e9bacac01b7e9c8d5e11ceb81cf82a25f81b0316eb12f427f786c89f7894c"
|
|
sha256 x86_64_linux: "a1e7fb602eb95892bd9c12a6b4c141d1b44eecda2f01127a7b9d418c51636604"
|
|
end
|
|
|
|
depends_on "gobject-introspection" => :build
|
|
depends_on "meson" => :build
|
|
depends_on "ninja" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "amtk"
|
|
depends_on "gtksourceview4"
|
|
depends_on "icu4c"
|
|
depends_on "uchardet"
|
|
|
|
def install
|
|
system "meson", *std_meson_args, "build", "-Dgtk_doc=false"
|
|
system "meson", "compile", "-C", "build", "-v"
|
|
system "meson", "install", "-C", "build"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <tepl/tepl.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
GType type = tepl_file_get_type();
|
|
return 0;
|
|
}
|
|
EOS
|
|
ENV.libxml2
|
|
atk = Formula["atk"]
|
|
amtk = Formula["amtk"]
|
|
cairo = Formula["cairo"]
|
|
fontconfig = Formula["fontconfig"]
|
|
freetype = Formula["freetype"]
|
|
gdk_pixbuf = Formula["gdk-pixbuf"]
|
|
gettext = Formula["gettext"]
|
|
glib = Formula["glib"]
|
|
gtkx3 = Formula["gtk+3"]
|
|
gtksourceview4 = Formula["gtksourceview4"]
|
|
harfbuzz = Formula["harfbuzz"]
|
|
libepoxy = Formula["libepoxy"]
|
|
libpng = Formula["libpng"]
|
|
pango = Formula["pango"]
|
|
pcre = Formula["pcre"]
|
|
pixman = Formula["pixman"]
|
|
uchardet = Formula["uchardet"]
|
|
flags = (ENV.cflags || "").split + (ENV.cppflags || "").split + (ENV.ldflags || "").split
|
|
flags += %W[
|
|
-I#{atk.opt_include}/atk-1.0
|
|
-I#{amtk.opt_include}/amtk-5
|
|
-I#{cairo.opt_include}/cairo
|
|
-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#{gtksourceview4.opt_include}/gtksourceview-4
|
|
-I#{gtkx3.opt_include}/gtk-3.0
|
|
-I#{harfbuzz.opt_include}/harfbuzz
|
|
-I#{include}/tepl-#{version.major}
|
|
-I#{libepoxy.opt_include}
|
|
-I#{libpng.opt_include}/libpng16
|
|
-I#{pango.opt_include}/pango-1.0
|
|
-I#{pcre.opt_include}
|
|
-I#{pixman.opt_include}/pixman-1
|
|
-I#{uchardet.opt_include}/uchardet
|
|
-D_REENTRANT
|
|
-L#{atk.opt_lib}
|
|
-L#{amtk.opt_lib}
|
|
-L#{cairo.opt_lib}
|
|
-L#{gdk_pixbuf.opt_lib}
|
|
-L#{gettext.opt_lib}
|
|
-L#{glib.opt_lib}
|
|
-L#{gtksourceview4.opt_lib}
|
|
-L#{gtkx3.opt_lib}
|
|
-L#{lib}
|
|
-L#{pango.opt_lib}
|
|
-latk-1.0
|
|
-lamtk-5
|
|
-lcairo
|
|
-lcairo-gobject
|
|
-lgdk-3
|
|
-lgdk_pixbuf-2.0
|
|
-lgio-2.0
|
|
-lglib-2.0
|
|
-lgobject-2.0
|
|
-ltepl-6
|
|
-lgtk-3
|
|
-lgtksourceview-4
|
|
-lpango-1.0
|
|
-lpangocairo-1.0
|
|
]
|
|
flags << "-lintl" if OS.mac?
|
|
system ENV.cc, "test.c", "-o", "test", *flags
|
|
system "./test"
|
|
end
|
|
end
|