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: "PD" 7build: [ 8 ["pg_config"] {os != "macos" | os-distribution != "homebrew"} 9 ["sh" "-c" "\"$(brew --prefix postgresql@15)\"/bin/pg_config"] {os = "macos" & os-distribution = "homebrew"} 10] 11bug-reports: "https://github.com/ocaml/opam-repository/issues" 12 13depexts: [ 14 ["libpq-dev"] {os-family = "debian"} 15 ["libpq-dev"] {os-family = "ubuntu"} 16 ["libpq-devel"] {os-distribution = "centos" & os-version >= "8"} 17 ["libpq-devel"] {os-distribution = "rhel" & os-version >= "8"} 18 ["libpq-devel"] {os-distribution = "ol" & os-version >= "8"} 19 ["libpq-devel"] {os-distribution = "fedora" & os-version >= "30"} 20 ["postgresql15-client"] {os-distribution = "freebsd" & os-version >= "13"} 21 ["postgresql96-client"] {os-distribution = "freebsd" & os-version < "13"} 22 ["postgresql96-client"] {os-distribution = "openbsd"} 23 ["postgresql-devel"] {os-distribution = "centos" & os-version < "8"} 24 ["postgresql-devel"] {os-distribution = "rhel" & os-version < "8"} 25 ["postgresql-devel"] {os-distribution = "ol" & os-version < "8"} 26 ["postgresql-devel"] {os-distribution = "fedora" & os-version < "30"} 27 ["postgresql-server-devel"] {os-family = "suse" | os-family = "opensuse"} 28 ["postgresql-dev"] {os-distribution = "alpine" & os-version < "3.15"} 29 ["postgresql14-dev"] {os-distribution = "alpine" & os-version >= "3.15"} 30 ["postgresql"] {os = "win32" & os-distribution = "cygwinports"} 31 ["postgresql-libs"] {os-family = "arch"} 32 ["postgresql@15"] {os = "macos" & os-distribution = "homebrew"} 33 ["postgresql96"] {os = "macos" & os-distribution = "macports"} 34 ["postgresql"] {os-distribution = "nixos"} 35] 36post-messages: [ 37 """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"} 38] 39synopsis: "Virtual package relying on a PostgreSQL system installation" 40description: 41 "This package can only install if PostgreSQL is installed on the system." 42flags: conf