homebrew-core/Formula/grv.rb
2019-01-13 12:22:55 +01:00

44 lines
1.4 KiB
Ruby

class Grv < Formula
desc "Terminal interface for viewing git repositories"
homepage "https://github.com/rgburke/grv"
url "https://github.com/rgburke/grv/releases/download/v0.3.1/grv-0.3.1-src.tar.gz"
sha256 "604f927a40218f6d7dff2188f796bb47c4ababff203f11a6f7ebce2f1967b6f0"
revision 1
head "https://github.com/rgburke/grv.git"
bottle do
cellar :any
sha256 "3e46286238092e3abb926112788425f3d91b38ce3c5977943d12b37891a4571c" => :mojave
sha256 "d4f7401eebdcbe972af570c04803df72ef6b9fb8dcd50f459f11007f827c1d66" => :high_sierra
sha256 "c323dbb30b2adb72a9b9b36ad574e76c98bda85f8843f83ebc0c79d81fe6eb00" => :sierra
end
depends_on "cmake" => :build
depends_on "go" => :build
depends_on "pkg-config" => :build
depends_on "ncurses" if DevelopmentTools.clang_build_version >= 1000
depends_on "readline"
def install
ENV["GOPATH"] = buildpath
path = buildpath/"src/github.com/rgburke/grv"
path.install buildpath.children
cd path do
system "make", "build-only"
bin.install "grv"
prefix.install_metafiles
end
end
test do
ENV["TERM"] = "xterm"
system "git", "init"
system "git", "commit", "--allow-empty", "-m", "test"
pipe_output("#{bin}/grv -logLevel DEBUG", "'<grv-exit>'", 0)
assert_predicate testpath/"grv.log", :exist?
assert_match "Loaded HEAD", File.read(testpath/"grv.log")
end
end