homebrew-core/Formula/sqlcipher.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

39 lines
1.1 KiB
Ruby

class Sqlcipher < Formula
desc "SQLite extension providing 256-bit AES encryption"
homepage "http://sqlcipher.net"
url "https://github.com/sqlcipher/sqlcipher/archive/v3.3.0.tar.gz"
sha256 "18f5df41a9806bc8eece00fde24c85107bd4807a5ae7057f9a6188de5d8fd82a"
head "https://github.com/sqlcipher/sqlcipher.git"
bottle do
cellar :any
sha256 "fdcf3a84310a234b755cf5644fba43d1819f507e05505100f5d78602932bdda1" => :yosemite
sha256 "c9a9268a27a0ff213d85ee902c9f0812dc5697d58f9236af24d1ba35ed618e4d" => :mavericks
sha256 "13c911a0a72ddcf1b01529200b501441393006ae8324003dfe388f886084ee56" => :mountain_lion
end
option "with-fts", "Build with full-text search enabled"
depends_on "openssl"
def install
args = %W[
--prefix=#{prefix}
--enable-tempstore=yes
--with-crypto-lib=#{Formula["openssl"].opt_prefix}
--enable-load-extension
--disable-tcl
]
if build.with?("fts")
args << "CFLAGS=-DSQLITE_HAS_CODEC -DSQLITE_ENABLE_FTS3"
else
args << "CFLAGS=-DSQLITE_HAS_CODEC"
end
system "./configure", *args
system "make"
system "make", "install"
end
end