53 lines
2.1 KiB
Ruby
53 lines
2.1 KiB
Ruby
class Keepassc < Formula
|
|
desc "Curses-based password manager for KeePass v.1.x and KeePassX"
|
|
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"
|
|
revision 1
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "a39174ce3147dff5d0b8a790a19c74251fe497b4f5b1a92cc0acfcfa62512ab4" => :sierra
|
|
sha256 "a5ab54d0fdd1b4dad4e4a23b0d64675ca0c326582d3ab1bc80ce48e6587e1c11" => :el_capitan
|
|
sha256 "1af4bc97f7d8f7cce8c84ddf604ad5965fa36b42272db522c9d36d075a30249a" => :yosemite
|
|
sha256 "f728d5979d69d58d4838e8b4140deaaa3b1080c625f36902ac8e6c00734e5fdb" => :mavericks
|
|
sha256 "b2fbb08796c545c2a3f76de8ea61aa432fc023a06bc15441f87f78031e0be647" => :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
|
|
pyver = Language::Python.major_minor_version "python3"
|
|
ENV.prepend_create_path "PYTHONPATH", libexec+"lib/python#{pyver}/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
|