homebrew-core/Formula/cryfs.rb
2018-01-23 11:13:40 +01:00

33 lines
1 KiB
Ruby

class Cryfs < Formula
desc "Encrypts your files so you can safely store them in Dropbox, iCloud, etc."
homepage "https://www.cryfs.org"
url "https://github.com/cryfs/cryfs/releases/download/0.9.8/cryfs-0.9.8.tar.xz"
sha256 "e4669aa79f8d419bb2580121a118b8993ee3493a08c5b1e0b80b8a8a4b54da65"
revision 1
head "https://github.com/cryfs/cryfs.git", :branch => "develop"
bottle do
cellar :any
sha256 "1e0726d2924e3ec3a4be4edec6f5a4252eb65494ec4ac579de38828c4308c70f" => :high_sierra
sha256 "e1854431529f362df8ba40ef344b118cf5b3bae72f7d3fbf0d21209f439d1838" => :sierra
sha256 "f70065ad596bbb700ad778ea0cdc19a295185fdf9653539ff75cbcfebd71e3bd" => :el_capitan
end
depends_on "cmake" => :build
depends_on "boost"
depends_on "cryptopp"
depends_on "openssl"
depends_on :osxfuse
needs :cxx11
def install
system "cmake", ".", "-DBUILD_TESTING=off", *std_cmake_args
system "make", "install"
end
test do
ENV["CRYFS_FRONTEND"] = "noninteractive"
assert_match "CryFS", shell_output("#{bin}/cryfs", 1)
end
end