this repo has no description
1opam-version: "2.0" 2maintainer: "https://github.com/ocaml/opam-repository/issues" 3authors: "C++ compiler developers" 4homepage: "https://github.com/ocaml/opam-repository" 5bug-reports: "https://github.com/ocaml/opam-repository/issues" 6license: "GPL-2.0-or-later" 7build: [ 8 "i686-w64-mingw32-c++" {os = "win32" & host-arch-x86_32:installed} 9 "x86_64-w64-mingw32-c++" {os = "win32" & host-arch-x86_64:installed} 10 "c++" {os != "win32" | (!host-arch-x86_32:installed & !host-arch-x86_64:installed)} 11 "--version" 12] 13depexts: [ 14 ["gcc-c++"] {os-distribution = "centos"} 15 ["gcc-c++"] {os-distribution = "fedora"} 16 ["gcc-c++"] {os-family = "suse" | os-family = "opensuse"} 17 ["g++"] {os-family = "debian"} 18 ["g++"] {os-family = "ubuntu"} 19 ["g++"] {os-distribution = "alpine"} 20 ["gcc"] {os-distribution = "nixos"} 21 ["gcc"] {os-distribution = "arch"} 22 ["gcc-g++"] {os = "win32" & os-distribution = "cygwinports"} 23] 24depends: 25 (("host-arch-x86_32" {os = "win32" & os-distribution != "cygwinports"} & "conf-mingw-w64-g++-i686" {os = "win32" & os-distribution != "cygwinports"}) | 26 ("host-arch-x86_64" {os = "win32" & os-distribution != "cygwinports"} & "conf-mingw-w64-g++-x86_64" {os = "win32" & os-distribution != "cygwinports"})) 27synopsis: "Virtual package relying on the c++ compiler" 28description: 29 "This package can only install if the c++ compiler is installed on the system." 30flags: conf