this repo has no description
1opam-version: "2.0" 2maintainer: "Thierry Martinez <martinez@nsup.org>" 3authors: "The LLVM team" 4homepage: "http://llvm.org" 5bug-reports: "https://llvm.org/bugs/" 6license: "MIT" 7build-env: [ 8 [HOMEBREW_NO_AUTO_UPDATE = "1"] 9] 10build: [ 11 ["bash" "-ex" "configure.sh" version] 12] 13depends: [ 14 "conf-bash" {build} 15] 16depexts: [ 17 ["llvm@12"] {os = "macos"} # Brew already has a package for llvm@13 18 ["llvm" "clang"] {os-distribution = "arch"} 19 ["libclang-dev" "llvm-dev"] {os-family = "debian"} 20 ["clang-dev" "llvm-dev" "clang-static"] {os-distribution = "alpine"} 21 ["clang-devel" "llvm-devel" "llvm-static" "zlib-devel"] 22 {os-distribution = "centos"} 23 ["clang-devel" "llvm-devel" "zlib-devel" "redhat-rpm-config"] 24 {os-distribution = "fedora"} 25 ["clang-devel" "llvm-devel" "llvm-static" "zlib-devel"] 26 {os-distribution = "ol" & os-version >= "8"} 27 ["llvm-clang-devel"] {os-family = "suse" | os-family = "opensuse"} 28 ["devel/llvm12"] {os = "freebsd"} 29 ["sys-devel/clang"] {os-distribution = "gentoo"} 30] 31x-ci-accept-failures: [ 32 "oraclelinux-7" # clang-devel is not available 33 "alpine-3.13" # unavailable system package 'llvm-dev' 34 "alpine-3.14" # unavailable system package 'llvm-dev' 35 "opensuse-15.3" # unavailable system package 'llvm-clang-devel' 36] 37synopsis: "Virtual package relying on the installation of llvm and clang libraries (<= 12.0.x)" 38flags: conf 39extra-source "configure.sh" { 40 src: 41 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-libclang/configure.sh.12" 42 checksum: 43 "sha512=db02fc6eee598041fd019679337eab74dc4180f6e94cfe6099a0b76ca2b10f9695079696ff4ee1b41692db46601211335fda83481dadb33ee65895a3a1369bdd" 44}