blob: be4ae01912325742cfaac4b64dbe1bad0190f6bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require "formula"
class Sqlcipher < Formula
homepage "http://sqlcipher.net"
url "https://github.com/sqlcipher/sqlcipher/archive/v3.1.0.tar.gz"
sha1 "350a7cbc01690825cb6beca3b9bf6943f71a52de"
head "https://github.com/sqlcipher/sqlcipher.git"
def install
system "./configure", "--prefix=#{prefix}", "--enable-tempstore=yes",
"CFLAGS=-DSQLITE_HAS_CODEC", "LDFLAGS=-lcrypto",
"--disable-tcl"
system "make"
system "make install"
end
end
|