summaryrefslogtreecommitdiffstats
path: root/HomeBrewFormula/git-delta.rb
blob: 25d8cc86ea1aeadea8516023f0fd02da6d858ef1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class GitDelta < Formula
  version "0.1.1"
  desc "A syntax-highlighting pager for git"
  homepage "https://github.com/dandavison/delta"

  if OS.mac?
      url "https://github.com/dandavison/delta/releases/download/#{version}/delta-#{version}-x86_64-apple-darwin.tar.gz"
      sha256 "f7278c13b7d9cb1cc2878d4820478fc3513b8f6f690da62335ae889183170850"
  elsif OS.linux?
      url "https://github.com/dandavison/delta/releases/download/#{version}/delta-#{version}-x86_64-unknown-linux-musl.tar.gz"
      sha256 "8980463026ccb2f72c1be40def19a15d3502d7f4d6c8c330f9d0f312ae37aa6e"
  end

  conflicts_with "delta"

  def install
    bin.install "delta"
    ohai "To configure git to use delta, run:"
    ohai "git config --global core.pager \"delta --dark\"  # --light for light terminal backgrounds"
  end

  test do
    shell_output "#{bin}/delta --list-themes"
  end
end