homebrew-core/Formula/tldr.rb
commitay b148ae213a tldr: add conflict with tealdeer
Closes #33332.

Signed-off-by: commitay <commitay@users.noreply.github.com>
2018-10-24 13:38:59 +10:00

29 lines
1,007 B
Ruby

class Tldr < Formula
desc "Simplified and community-driven man pages"
homepage "https://tldr.sh/"
url "https://github.com/tldr-pages/tldr-cpp-client/archive/v1.3.0.tar.gz"
sha256 "6210ece3f5d8f8e55b404e2f6c84be50bfdde9f0d194a271bce751a3ed6141be"
revision 2
head "https://github.com/tldr-pages/tldr-cpp-client.git"
bottle do
cellar :any
sha256 "c5f99efa930b7f80647496c83fe118bd184feae7c5f256dc67d7594aceba7120" => :mojave
sha256 "00f5ce204fa62e51ed3be821abba9fdda36335b6cecf65231158c02b9713f357" => :high_sierra
sha256 "06f9609695fb6b14bbd78f3246bb176b341aecda6ce70515723cee8e8e4ced69" => :sierra
sha256 "209c571e3472128665194e73451199087236758a0a7cfa6e88ffd7aa444abbac" => :el_capitan
end
depends_on "pkg-config" => :build
depends_on "libzip"
conflicts_with "tealdeer", :because => "both install `tldr` binaries"
def install
system "make", "PREFIX=#{prefix}", "install"
end
test do
assert_match "brew", shell_output("#{bin}/tldr brew")
end
end