homebrew-core/Formula/sqlcipher.rb
2016-11-06 08:22:49 -08:00

40 lines
1.2 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.4.0.tar.gz"
sha256 "99b702ecf796de02bf7b7b35de4ceef145f0d62b4467a86707c2d59beea243d0"
head "https://github.com/sqlcipher/sqlcipher.git"
bottle do
cellar :any
rebuild 1
sha256 "186547f2f2bec6166a37b7d57f697fee754c9bce42fe4a1955884c775f472104" => :sierra
sha256 "7176c5e820b735fdf92b45fef777272b64a3c82a8cd413566a226a51f0d53a26" => :el_capitan
sha256 "dea950abb96a9072116ef96f6d86eb314908ccee1936b66cc44e7f574eb2c100" => :yosemite
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 -DSQLITE_ENABLE_FTS3_PARENTHESIS -DSQLITE_ENABLE_FTS5"
else
args << "CFLAGS=-DSQLITE_HAS_CODEC"
end
system "./configure", *args
system "make"
system "make", "install"
end
end