require "formula" class Sqlcipher < Formula homepage "http://sqlcipher.net" url "https://github.com/sqlcipher/sqlcipher/archive/v3.2.0.tar.gz" sha1 "44af36d34f05154a7527a55389d9bc0ef0913595" head "https://github.com/sqlcipher/sqlcipher.git" 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 ct name='h' onchange='this.form.submit();'> :beer: The missing package manager for OS X.
aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ncmpcpp.rb
blob: a7d772ba098222cbd585fef529c5659b342f12bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63