homebrew-core/Formula/keepassc.rb
Viktor Szakats b33c9ff4ba keepassc: pass strict audit
* SSL/TLS homepage
* SHA256
* double space after comma (uncaught by audit)

Closes Homebrew/homebrew#39539.

Signed-off-by: Xu Cheng <xucheng@me.com>
2015-05-09 13:55:46 +08:00

48 lines
1.7 KiB
Ruby

class Keepassc < Formula
homepage "https://raymontag.github.com/keepassc/"
url "https://github.com/raymontag/keepassc/archive/1.7.0.tar.gz"
sha256 "218537f6a16f70d907d22a23d1a4dec952d7622c65fae65f03c9ee98e64938dd"
head "https://github.com/raymontag/keepassc.git", :branch => "development"
bottle do
cellar :any
sha1 "fba4d1c078e87272829edb0450d415ba69f65928" => :yosemite
sha1 "7a20f233d82f09d1fde95e382e83a321b05d04a7" => :mavericks
sha1 "be234b537c09d85d9cc75d4085196f796f0994fa" => :mountain_lion
end
depends_on :python3
resource "pycrypto" do
# homepage "https://www.dlitz.net/software/pycrypto"
url "https://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/pycrypto-2.6.1.tar.gz"
sha256 "f2ce1e989b272cfcb677616763e0a2e7ec659effa67a88aa92b3a65528f60a3c"
end
resource "kppy" do
# homepage "https://github.com/raymontag/kppy"
url "https://github.com/raymontag/kppy/archive/1.4.0.tar.gz"
sha256 "a7ebcb7a13b037aada2785ca19cbc1ecaf0351ffa422ca6b487ece0b09ce1c10"
end
def install
ENV.prepend_create_path "PYTHONPATH", libexec+"lib/python3.4/site-packages"
install_args = %W[setup.py install --prefix=#{libexec}]
resource("pycrypto").stage { system "python3", *install_args }
resource("kppy").stage { system "python3", *install_args }
system "python3", *install_args
man1.install Dir["*.1"]
bin.install Dir[libexec/"bin/*"]
bin.env_script_all_files(libexec+"bin", :PYTHONPATH => ENV["PYTHONPATH"])
end
test do
# Fetching help is the only non-interactive action we can perform, and since
# interactive actions are un-scriptable, there nothing more we can do.
system "#{bin}/keepassc", "--help"
end
end