85 lines
2.5 KiB
Ruby
85 lines
2.5 KiB
Ruby
class OsmGpsMap < Formula
|
|
desc "GTK+ library to embed OpenStreetMap maps"
|
|
homepage "https://nzjrs.github.com/osm-gps-map/"
|
|
url "https://github.com/nzjrs/osm-gps-map/releases/download/1.1.0/osm-gps-map-1.1.0.tar.gz"
|
|
sha256 "8f2ff865ed9ed9786cc5373c37b341b876958416139d0065ebb785cf88d33586"
|
|
revision 1
|
|
|
|
bottle do
|
|
sha256 "3fc5e8704885ee52388758422a586fe36f67f0bb88f260107d8d51ddaee69131" => :mojave
|
|
sha256 "9b4ff596f15ef4dd79f8a52869ce0f0dc4e104c827f79dd223c3ff3c60631c5c" => :high_sierra
|
|
sha256 "5303392a0018ff176e67b844d1808834500c1b0ac8dd5362ad5f2a70939d1bc2" => :sierra
|
|
sha256 "05bc6efb9676e68162e553bfe41f7467e5f7d8da85cb9cfda5256bf5a79ff884" => :el_capitan
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/nzjrs/osm-gps-map.git"
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "gnome-common" => :build
|
|
depends_on "gtk-doc" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
depends_on "gobject-introspection" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "gdk-pixbuf"
|
|
depends_on "glib"
|
|
depends_on "gtk+3"
|
|
depends_on "libsoup"
|
|
|
|
def install
|
|
system "./autogen.sh" if build.head?
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--disable-silent-rules", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <osm-gps-map.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
OsmGpsMap *map;
|
|
gtk_init (&argc, &argv);
|
|
map = g_object_new (OSM_TYPE_GPS_MAP, NULL);
|
|
return 0;
|
|
}
|
|
EOS
|
|
atk = Formula["atk"]
|
|
cairo = Formula["cairo"]
|
|
glib = Formula["glib"]
|
|
gdk_pixbuf = Formula["gdk-pixbuf"]
|
|
gtkx3 = Formula["gtk+3"]
|
|
pango = Formula["pango"]
|
|
flags = %W[
|
|
-I#{atk.opt_include}/atk-1.0
|
|
-I#{cairo.opt_include}/cairo
|
|
-I#{gdk_pixbuf.opt_include}/gdk-pixbuf-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#{pango.opt_include}/pango-1.0
|
|
-I#{include}/osmgpsmap-1.0
|
|
-D_REENTRANT
|
|
-L#{atk.opt_lib}
|
|
-L#{cairo.opt_lib}
|
|
-L#{gdk_pixbuf.opt_lib}
|
|
-L#{glib.opt_lib}
|
|
-L#{gtkx3.opt_lib}
|
|
-L#{lib}
|
|
-L#{pango.opt_lib}
|
|
-latk-1.0
|
|
-lcairo
|
|
-lgdk-3
|
|
-lgdk_pixbuf-2.0
|
|
-lglib-2.0
|
|
-lgtk-3
|
|
-lgobject-2.0
|
|
-lpango-1.0
|
|
-losmgpsmap-1.0
|
|
]
|
|
system ENV.cc, "test.c", "-o", "test", *flags
|
|
system "./test"
|
|
end
|
|
end
|