this repo has no description
1opam-version: "2.0" 2maintainer: "Ralf Jung <post@ralfj.de>" 3authors: "The Coq development team, INRIA, CNRS, University Paris Sud, University Paris 7, Ecole Polytechnique." 4homepage: "https://coq.inria.fr/" 5bug-reports: "https://github.com/coq/coq/issues" 6dev-repo: "git+https://github.com/coq/coq.git" 7license: "LGPL-2.1-only" 8patches: [ "0001_make_install_static_plug.patch" 9 "0002_alpine_linux.patch" 10 ] 11depopts: [ 12 "coq-native" 13] 14build: [ 15 [ 16 "./configure" 17 "-configdir" "%{lib}%/coq/config" 18 "-prefix" prefix 19 "-mandir" man 20 "-docdir" doc 21 "-libdir" "%{lib}%/coq" 22 "-datadir" "%{share}%/coq" 23 "-camlp5dir" "%{camlp5:lib}%" 24 "-coqide" "no" 25 "-native-compiler" "yes" {coq-native:installed} "no" {!coq-native:installed} 26 ] 27 [make "-j1"] 28 [make "-j1" "byte"] 29] 30install: [ 31 [make "install"] 32 [make "install-byte"] 33] 34remove: [ 35 ["rm" "-R" "%{lib}%/coq" "%{share}%/coq"] 36 ["rm" 37 "%{man}%/man1/coqc.1" 38 "%{man}%/man1/coqchk.1" 39 "%{man}%/man1/coqdep.1" 40 "%{man}%/man1/coqdoc.1" 41 "%{man}%/man1/coqide.1" 42 "%{man}%/man1/coq_makefile.1" 43 "%{man}%/man1/coqmktop.1" 44 "%{man}%/man1/coq-tex.1" 45 "%{man}%/man1/coqtop.1" 46 "%{man}%/man1/coqtop.byte.1" 47 "%{man}%/man1/coqtop.opt.1" 48 "%{man}%/man1/coqwc.1" 49 "%{man}%/man1/gallina.1" 50 "%{share}%/texmf/tex/latex/misc/coqdoc.sty" 51 "%{share}%/emacs/site-lisp/coq-font-lock.el" 52 "%{share}%/emacs/site-lisp/coq-inferior.el" 53 "%{share}%/emacs/site-lisp/gallina-db.el" 54 "%{share}%/emacs/site-lisp/gallina.el" 55 "%{share}%/emacs/site-lisp/gallina-syntax.el" 56 ] 57] 58depends: [ 59 "ocaml" {>= "4.02.3" & < "4.10"} 60 "ocamlfind" {build} 61 "camlp5" {< "8"} 62 "num" 63 "conf-findutils" {build} 64] 65synopsis: "Formal proof management system" 66flags: light-uninstall 67url { 68 src: "https://github.com/coq/coq/releases/download/V8.7.1/coq-8.7.1.tar.gz" 69 checksum: [ 70 "sha256=d381b38522cee0e73804ee3a763648f602eda942312c18d333f9567c56dbfd03" 71 "md5=15347f45471e2d5277c60585297cd3e0" 72 ] 73} 74extra-source "coq.install" { 75 src: 76 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/coq/coq.install.8.7.1+1" 77 checksum: [ 78 "sha256=572ff0cb71d3bfba10a84952f4594733ee0c120c40f25df5cd0ddf708b55f3c6" 79 "md5=b85e0eb533d6836c15581f0e5cb0ebc2" 80 ] 81} 82extra-source "0002_alpine_linux.patch" { 83 src: 84 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/coq/0002_alpine_linux.patch" 85 checksum: [ 86 "sha256=cddae2e0544fcb6f561566d7fe63a445b5c0e7457aa4f4c5e24cfb4a5cb7a502" 87 "md5=4e57a3fca795f4dc27e7136c9325bfd3" 88 ] 89} 90extra-source "0001_make_install_static_plug.patch" { 91 src: 92 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/coq/0001_make_install_static_plug.patch" 93 checksum: [ 94 "sha256=0ebbbfa125dad665af5a577fd1e2ad86d9e9a32ce12d1f0db6952ba92ad70385" 95 "md5=541273f7b7b584fc5f62e65162389bd1" 96 ] 97}