30 lines
1.0 KiB
Ruby
30 lines
1.0 KiB
Ruby
class Vcsh < Formula
|
|
desc "Config manager based on git"
|
|
homepage "https://github.com/RichiH/vcsh"
|
|
url "https://github.com/RichiH/vcsh/releases/download/v2.0.2/vcsh-2.0.2.tar.xz"
|
|
sha256 "3ffc0bbb43c76620c8234c98f4ae94d0a99d24bb240497aab730979a8d23ad61"
|
|
license "GPL-2.0-or-later"
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 cellar: :any_skip_relocation, all: "40f77813b0e23090862c769daaa02a99ddc179ca1dae0e9834827dc02e16ce5b"
|
|
end
|
|
|
|
def install
|
|
# Set GIT, SED, and GREP to prevent
|
|
# hardcoding shim references and absolute paths
|
|
system "./configure", "--with-zsh-completion-dir=#{zsh_completion}",
|
|
"--with-bash-completion-dir=#{bash_completion}",
|
|
"GIT=git", "SED=sed", "GREP=grep",
|
|
*std_configure_args
|
|
system "make", "install"
|
|
|
|
# Make the shebang uniform across macOS and Linux
|
|
inreplace bin/"vcsh", %r{^#!/bin/(ba)?sh$}, "#!/usr/bin/env bash"
|
|
end
|
|
|
|
test do
|
|
assert_match "Initialized empty", shell_output("#{bin}/vcsh init test").strip
|
|
end
|
|
end
|