this repo has no description
1opam-version: "2.0" 2maintainer: "Markus Mottl <markus.mottl@gmail.com>" 3authors: "Markus Mottl <markus.mottl@gmail.com>" 4homepage: "https://www.postgresql.org" 5dev-repo: "git+https://github.com/mmottl/postgresql-ocaml.git" 6license: "blessing" 7build: [ 8 ["pkgconf" {os = "win32" & os-distribution != "cygwinports"} 9 "--personality=i686-w64-mingw32" {os = "win32" & os-distribution != "cygwinports" & host-arch-x86_32:installed} 10 "--personality=x86_64-w64-mingw32" {os = "win32" & os-distribution != "cygwinports" & host-arch-x86_64:installed} 11 "pkg-config" {os != "win32" | os-distribution != "cygwin"} 12 "libpq"] 13] 14depends: [ 15 "conf-pkg-config" {build} 16 ("host-arch-x86_32" {os = "win32" & os-distribution != "cygwinports"} & "conf-mingw-w64-postgresql-i686" {os = "win32" & os-distribution != "cygwinports"} | 17 "host-arch-x86_64" {os = "win32" & os-distribution != "cygwinports"} & "conf-mingw-w64-postgresql-x86_64" {os = "win32" & os-distribution != "cygwinports"}) 18] 19bug-reports: "https://github.com/ocaml/opam-repository/issues" 20 21depexts: [ 22 ["libpq-dev"] {os-family = "debian"} 23 ["libpq-dev"] {os-family = "ubuntu"} 24 ["libpq-devel"] {os-distribution = "centos" & os-version >= "8"} 25 ["libpq-devel"] {os-distribution = "rhel" & os-version >= "8"} 26 ["libpq-devel"] {os-distribution = "ol" & os-version >= "8"} 27 ["libpq-devel"] {os-distribution = "fedora" & os-version >= "30"} 28 ["postgresql15-client"] {os-distribution = "freebsd" & os-version >= "13"} 29 ["postgresql96-client"] {os-distribution = "freebsd" & os-version < "13"} 30 ["postgresql96-client"] {os-distribution = "openbsd"} 31 ["postgresql-devel"] {os-distribution = "centos" & os-version < "8"} 32 ["postgresql-devel"] {os-distribution = "rhel" & os-version < "8"} 33 ["postgresql-devel"] {os-distribution = "ol" & os-version < "8"} 34 ["postgresql-devel"] {os-distribution = "fedora" & os-version < "30"} 35 ["postgresql-server-devel"] {os-family = "suse" | os-family = "opensuse"} 36 ["postgresql-dev"] {os-distribution = "alpine" & os-version < "3.15"} 37 ["postgresql14-dev"] {os-distribution = "alpine" & os-version >= "3.15"} 38 ["postgresql"] {os = "win32" & os-distribution = "cygwinports"} 39 ["postgresql-libs"] {os-family = "arch"} 40 ["libpq"] {os = "macos" & os-distribution = "homebrew"} 41 ["postgresql96"] {os = "macos" & os-distribution = "macports"} 42 ["postgresql"] {os-distribution = "nixos"} 43] 44post-messages: [ 45 """If this package failed with "Command not found: pg_config", you might need to call "brew link postgresql@15" and retry to install this package afterwards.""" {failure & os = "macos" & os-distribution = "homebrew"} 46] 47synopsis: "Virtual package relying on a PostgreSQL system installation" 48description: 49 "This package can only install if PostgreSQL is installed on the system." 50flags: conf