summaryrefslogtreecommitdiff
path: root/homebrew/sqlcipher/.beer
blob: 31526b83786a2477456df28921b4fad366592623 (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
{
    "name": "Sqlcipher",
    "description": "SQLite extension providing 256-bit AES encryption",
    "url": "https://github.com/sqlcipher/sqlcipher/archive/v4.1.0.tar.gz",
    "mirror": null,
    "homepage": "https://www.zetetic.net/sqlcipher/",
    "depends": [
        {
            "depend": "openssl",
            "build-depend": false
        }
    ],
    "resource": [],
    "conflicts": [],
    "patches": [],
    "install": [
        "args = %W[",
        "--prefix=#{prefix}",
        "--enable-tempstore=yes",
        "--with-crypto-lib=#{Formula[\"openssl\"].opt_prefix}",
        "--enable-load-extension",
        "--disable-tcl",
        "]",
        "args << \"CFLAGS=-DSQLITE_HAS_CODEC -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS -DSQLITE_ENABLE_FTS5\"",
        "system \"./configure\", *args",
        "system \"make\"",
        "system \"make\", \"install\""
    ],
    "version": "4.1.0",
    "file": "sqlcipher.rb"
}