class Gpsbabel < Formula desc "Converts/uploads GPS waypoints, tracks, and routes" homepage "https://www.gpsbabel.org/" url "https://github.com/gpsbabel/gpsbabel/archive/gpsbabel_1_5_4.tar.gz" sha256 "8cd740db0b92610abff71e942e8a987df58cd6ca5f25cca86e15f2b00e190704" revision 1 bottle do sha256 "e93459121437da0a431110d2328b797e0c0f08c6ad0d8868a8fc54eacad113f8" => :high_sierra sha256 "6beb905104938716330e3c08a8369844ea31a9fbdc91fca3efc2e218ea9ba9a4" => :sierra sha256 "b99754ca018e38fd12b8604ca9ad249590e363586b9fe48dd416b02b93d0c8be" => :el_capitan end depends_on "qt" depends_on "libusb" => :optional # Fix build with Xcode 9, remove for next version patch do url "https://github.com/gpsbabel/gpsbabel/commit/b7365b93.patch?full_index=1" sha256 "e949182def36fef99889e43ba4bc4d61e36d6b95badc74188a8cd3da5156d341" end # Upstream fix to build with Qt 5.10, remove for next version patch do url "https://raw.githubusercontent.com/Homebrew/formula-patches/ca4c4730/gpsbabel/qt5.10.patch" sha256 "09efe405f43ae26570d6b5fcb7c5bcc7e0c8bc9a9ad6700d3901bcdcc43c33cf" end def install ENV.cxx11 args = ["--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"] args << "--without-libusb" if build.without? "libusb" system "./configure", *args system "make", "install" end test do (testpath/"test.loc").write <<~EOS EOS system bin/"gpsbabel", "-i", "geo", "-f", "test.loc", "-o", "gpx", "-F", "test.gpx" assert_predicate testpath/"test.gpx", :exist? end end