this repo has no description
1opam-version: "2.0" 2maintainer: "zandoye@gmail.com" 3authors: [ "ZAN DoYe" ] 4homepage: "https://bitbucket.org/zandoye/ocaml-tidy/" 5bug-reports: "https://bitbucket.org/zandoye/ocaml-tidy/issues" 6license: "MIT" 7 8build: [ 9 ["sh" "-exec" "cc -I/usr/include/tidy -I/usr/local/include/tidy $CFLAGS test.c -ltidy"] 10] 11 12depexts: [ 13 ["libtidy-dev"] {os-family = "debian" | os-family = "ubuntu"} 14 ["libtidy-devel"] {os-family = "suse" | os-family = "opensuse"} 15 ["tidy"] {os-distribution = "arch"} 16 ["tidyhtml-dev"] {os-distribution = "alpine"} 17 ["app-text/tidy-html5"] {os-distribution = "gentoo"} 18 ["libtidy-devel"] {os-distribution = "fedora"} 19 ["libtidy-devel"] {os-distribution = "centos"} 20 ["tidy-html5"] {os = "macos" & os-distribution = "homebrew"} 21 ["tidy-html5"] {os = "freebsd"} 22] 23x-ci-accept-failures: [ 24 "oraclelinux-7" 25 "oraclelinux-8" 26 "oraclelinux-9" 27] 28synopsis: "Virtual package relying on libtidy installation" 29description: "This package can install only if the libtidy is available on the system" 30 31flags: [conf] 32extra-source "test.c" { 33 src: 34 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-tidy/test.c" 35 checksum: [ 36 "sha256=ad489ad4255933d391e758adc30cf4e615a46064d1e2681801f1cebebff11afa" 37 "md5=10ca381a34acb820dbaf7dffcbe8ae35" 38 ] 39} 40