-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 825 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 825 Bytes
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": "esy-sqlite",
"version": "0.1.0",
"description": "Mirror of SQLite with esy support",
"license": "Apache 2.0",
"source": "https://www.sqlite.org/2020/sqlite-autoconf-3310100.tar.gz#0c30f5b22152a8166aa3bebb0f4bc1f3e9cc508b",
"override": {
"build": [
["./configure", "--prefix=#{self.install}"],
["make", "-j4"]
],
"install": [
["make", "install"]
],
"buildsInSource": true,
"exportedEnv": {
"LD_LIBRARY_PATH": {
"val": "#{self.lib : $LD_LIBRARY_PATH}",
"scope": "global"
},
"PKG_CONFIG_PATH": {
"val": "#{self.lib / 'pkgconfig'}",
"scope": "global"
}
},
"dependencies": {
"@opam/conf-autoconf": "esy-packages/esy-autoconf:package.json#fb93edf",
"@opam/conf-pkg-config": "*"
}
}
}