Skip to content

Commit

Permalink
securefs: import from homebrew/fuse.
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcQuaid committed Apr 19, 2017
1 parent c89e5df commit 50ad6f6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Formula/securefs.rb
@@ -0,0 +1,19 @@
class Securefs < Formula
desc "Filesystem with transparent authenticated encryption"
homepage "https://github.com/netheril96/securefs"
url "https://github.com/netheril96/securefs/archive/0.7.2.tar.gz"
sha256 "bb6373dac49fbc621c478937b4255a01085bc9db3a5d1f8845e63a0468fe8cfc"
head "https://github.com/netheril96/securefs.git"

depends_on "cmake" => :build
depends_on :osxfuse

def install
system "cmake", ".", *std_cmake_args
system "make", "install"
end

test do
system "#{bin}/securefs", "version" # The sandbox prevents a more thorough test
end
end

0 comments on commit 50ad6f6

Please sign in to comment.