this repo has no description
1opam-version: "2.0"
2synopsis: "sqlite3 for x86_64 mingw-w64 (64-bit x86_64)"
3description: "Ensures the x86_64 version of sqlite3 for the mingw-w64 project is available"
4maintainer: "David Allsopp <david@tarides.com>"
5authors: [
6 "D. Richard Hipp"
7 "Dan Kennedy"
8 "Joe Mistachkin"
9]
10license: "blessing"
11homepage: "http://www.sqlite3.org"
12bug-reports: "https://github.com/ocaml/opam-repository/issues"
13flags: conf
14available: os = "win32"
15build: ["pkgconf" "--personality=x86_64-w64-mingw32" "sqlite3"]
16depends: [
17 "conf-pkg-config" {build}
18 "conf-mingw-w64-gcc-x86_64" {build}
19]
20depexts: [
21 ["mingw64-x86_64-sqlite3"] {os = "win32" & os-distribution = "cygwin"}
22 ["mingw-w64-x86_64-sqlite3"] {os = "win32" & os-distribution = "msys2"}
23]