this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #26146 from mtelvers/mingw-sqlite3

Update conf-sqlite3 for mingw-w64 ports

authored by

Raphaël Proust and committed by
GitHub
29ea8042 e57adaa1

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