homebrew-core/Formula/gerbv.rb
2019-08-07 11:52:00 +01:00

93 lines
2.7 KiB
Ruby

class Gerbv < Formula
desc "Gerber (RS-274X) viewer"
homepage "http://gerbv.gpleda.org/"
# 2.6.1 is the latest official stable release but it is very buggy and incomplete
url "https://downloads.sourceforge.net/project/gerbv/gerbv/gerbv-2.6.0/gerbv-2.6.0.tar.gz"
sha256 "5c55425c3493bc8407949be8b4e572434a6b378f5727cc0dcef97dc2e7574dd0"
revision 3
bottle do
rebuild 1
sha256 "5d7737b4a05390618fb4fcf160a5ea5cfd60213d7f50955d308dbce80f9d0078" => :mojave
sha256 "0b845b8689b8554177d6074e71857caa81a077a28558be1b39984cd1c9728db6" => :high_sierra
sha256 "67f3cdf2addd6a071683e04dbdd6b5d75fc34737bf45cc3f9a8d94a8f590ce3f" => :sierra
end
depends_on "pkg-config" => :build
depends_on "gtk+"
def install
ENV.append "CPPFLAGS", "-DQUARTZ"
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-update-desktop-database"
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-2.6.0
-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-quartz-2.0
-lgdk_pixbuf-2.0
-lgerbv
-lgio-2.0
-lglib-2.0
-lgobject-2.0
-lgtk-quartz-2.0
-lintl
-lpango-1.0
-lpangocairo-1.0
]
system ENV.cc, "test.c", "-o", "test", *flags
system "./test"
end
end