46 lines
1.7 KiB
Ruby
46 lines
1.7 KiB
Ruby
class LastpassCli < Formula
|
|
desc "LastPass command-line interface tool"
|
|
homepage "https://github.com/lastpass/lastpass-cli"
|
|
url "https://github.com/lastpass/lastpass-cli/releases/download/v1.3.3/lastpass-cli-1.3.3.tar.gz"
|
|
sha256 "b94f591627e06c9fed3bc38007b1adc6ea77127e17c7175c85d497096768671b"
|
|
license "GPL-2.0"
|
|
revision 1
|
|
head "https://github.com/lastpass/lastpass-cli.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
rebuild 4
|
|
sha256 "10f9224c8bfebae0cf12df72e6144ba3a309956b1efcce574975cd21cec930c5" => :big_sur
|
|
sha256 "8643f81d13a40ef8b86efe83fbee1b41b22c492b7725bebab83dcb2d253fd603" => :catalina
|
|
sha256 "f1b7c42dd889f597ef06f0bd72bb1b273c21dc91e5f3e313da8599254954a7ae" => :mojave
|
|
sha256 "62629472aafb7e4927d8ab5e9d7189c913e3249a172d0445ffe7eda31b642eb7" => :high_sierra
|
|
end
|
|
|
|
depends_on "asciidoc" => :build
|
|
depends_on "cmake" => :build
|
|
depends_on "docbook-xsl" => :build
|
|
depends_on "pkg-config" => :build
|
|
# Avoid crashes on Mojave's version of libcurl (https://github.com/lastpass/lastpass-cli/issues/427)
|
|
depends_on "curl" if MacOS.version >= :mojave
|
|
depends_on "openssl@1.1"
|
|
depends_on "pinentry"
|
|
|
|
def install
|
|
ENV["XML_CATALOG_FILES"] = etc/"xml/catalog"
|
|
|
|
mkdir "build" do
|
|
system "cmake", "..", *std_cmake_args, "-DCMAKE_INSTALL_MANDIR:PATH=#{man}"
|
|
system "make", "install", "install-doc"
|
|
end
|
|
|
|
bash_completion.install "contrib/lpass_bash_completion"
|
|
zsh_completion.install "contrib/lpass_zsh_completion" => "_lpass"
|
|
fish_completion.install "contrib/completions-lpass.fish" => "lpass.fish"
|
|
end
|
|
|
|
test do
|
|
assert_equal("Error: Could not find decryption key. Perhaps you need to login with `#{bin}/lpass login`.",
|
|
shell_output("#{bin}/lpass passwd 2>&1", 1).chomp)
|
|
end
|
|
end
|