homebrew-core/Formula/gerbv.rb

113 lines
3.5 KiB
Ruby

class Gerbv < Formula
desc "Gerber (RS-274X) viewer"
homepage "https://gerbv.github.io/"
url "https://github.com/gerbv/gerbv/archive/refs/tags/v2.9.6.tar.gz"
sha256 "0e517ea28bcb76fb7547c759b0d09e6d207e1cb539d95af6ef609354d2f48ad3"
license "GPL-2.0-or-later"
bottle do
sha256 arm64_ventura: "c928c62d0e8eda9e96dbbf4a9baad1ab7bc18fc8078dca3a85af0f97ef49ff3e"
sha256 arm64_monterey: "46bf2b6cd222d5bdfe053c82f774c4eb8dad2b37622e5459a9022ccb71c62192"
sha256 arm64_big_sur: "12c2b634ddd479d09858a51a59eac8fa51bb969280f8d41a2199c32420cc4c1b"
sha256 ventura: "0026267f7f29606d244ca9bd395f3c4d7065fe3c4c6816dbdf6d8dfcf3a507ad"
sha256 monterey: "7e7c6507bfb6b7b4b79c9719dc22d53710077b6b286b1e1db20f69af16bb97e2"
sha256 big_sur: "93e553925362828ff57324975da7a6a03719e5d34e7f0083b7038d9f07e1e940"
sha256 x86_64_linux: "598968f958e6c3313d4f52e2b36417835a200c767eb0f0575811750ea61649c5"
end
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "gettext" => :build
depends_on "libtool" => :build
depends_on "pkg-config" => :build
depends_on "gtk+"
def install
ENV.append "CPPFLAGS", "-DQUARTZ" if OS.mac?
inreplace "autogen.sh", "libtool", "glibtool"
# Disable commit reference in include dir
inreplace "utils/git-version-gen.sh" do |s|
s.gsub! 'RELEASE_COMMIT=`"${GIT}" rev-parse HEAD`', "RELEASE_COMMIT=\"\""
s.gsub! "${PREFIX}~", "${PREFIX}"
end
system "./autogen.sh"
system "./configure", *std_configure_args,
"--disable-dependency-tracking",
"--disable-update-desktop-database",
"--disable-schemas-compile"
system "make"
system "make", "install"
end
test do
# executable (GUI) test
system "#{bin}/gerbv", "--version"
# API test
(testpath/"test.c").write <<~EOS
#include <gerbv.h>
int main(int argc, char *argv[]) {
double d = gerbv_get_tool_diameter(2);
return 0;
}
EOS
atk = Formula["atk"]
cairo = Formula["cairo"]
fontconfig = Formula["fontconfig"]
freetype = Formula["freetype"]
gdk_pixbuf = Formula["gdk-pixbuf"]
gettext = Formula["gettext"]
glib = Formula["glib"]
gtkx = Formula["gtk+"]
harfbuzz = Formula["harfbuzz"]
libpng = Formula["libpng"]
pango = Formula["pango"]
pixman = Formula["pixman"]
flags = %W[
-I#{atk.opt_include}/atk-1.0
-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}/glib-2.0
-I#{glib.opt_lib}/glib-2.0/include
-I#{gtkx.opt_include}/gtk-2.0
-I#{gtkx.opt_lib}/gtk-2.0/include
-I#{harfbuzz.opt_include}/harfbuzz
-I#{include}/gerbv-#{version}
-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#{gdk_pixbuf.opt_lib}
-L#{gettext.opt_lib}
-L#{glib.opt_lib}
-L#{gtkx.opt_lib}
-L#{lib}
-L#{pango.opt_lib}
-latk-1.0
-lcairo
-lgdk_pixbuf-2.0
-lgerbv
-lgio-2.0
-lglib-2.0
-lgobject-2.0
-lpango-1.0
-lpangocairo-1.0
]
if OS.mac?
flags += %w[
-lgdk-quartz-2.0
-lgtk-quartz-2.0
-lintl
]
end
system ENV.cc, "test.c", "-o", "test", *flags
system "./test"
end
end