class Libgit2Glib < Formula desc "Glib wrapper library around libgit2 git access library" homepage "https://github.com/GNOME/libgit2-glib" url "https://download.gnome.org/sources/libgit2-glib/0.24/libgit2-glib-0.24.4.tar.xz" sha256 "3a211f756f250042f352b3070e7314a048c88e785dba9d118b851253a7c60220" bottle do sha256 "66f959a587df5f21335bfec738f9ca72e9bb5d0e670f0e3f50c87a7e4de758b9" => :sierra sha256 "d8a4f949c2161670d734295533552dc97db5d10875a07295f4e632d7954ff1e6" => :el_capitan sha256 "01ffb7381c126ded635eab180c730bfec0b9abb79367eff03e08a11b33410d81" => :yosemite sha256 "0052a481cad9b325f51261f86fca667e0f88f11176b6b0042989364fa1d376c8" => :mavericks end head do url "https://github.com/GNOME/libgit2-glib.git" depends_on "libtool" => :build depends_on "automake" => :build depends_on "autoconf" => :build depends_on "gnome-common" => :build depends_on "gtk-doc" => :build end depends_on "pkg-config" => :build depends_on "gettext" depends_on "libgit2" depends_on "gobject-introspection" depends_on "glib" depends_on "vala" => :optional depends_on :python => :optional def install args = %W[ --prefix=#{prefix} --disable-silent-rules --disable-dependency-tracking ] args << "--enable-python=no" if build.without? "python" args << "--enable-vala=no" if build.without? "vala" system "./autogen.sh", *args if build.head? system "./configure", *args if build.stable? system "make", "install" libexec.install "examples/.libs", "examples/clone", "examples/general", "examples/walk" end test do mkdir "horatio" do system "git", "init" end system "#{libexec}/general", testpath/"horatio" end end