this repo has no description
1opam-version: "2.0" 2maintainer: "zoggy@bat8.org" 3authors: ["Maxence Guesdon"] 4homepage: "https://github.com/zoggy/findlib-lint" 5license: "New BSD License" 6doc: ["https://github.com/zoggy/findlib-lint"] 7tags: ["findlib" "ocamlfind" "check" "META"] 8 9build: [make "all"] 10remove: [["ocamlfind" "remove" "findlib-lint"]] 11depends: [ 12 "ocaml" {< "5.0.0"} 13 "ocamlfind" 14] 15dev-repo: "git+https://github.com/zoggy/findlib-lint" 16install: [make "install-lib"] 17synopsis: "Simple tool performing checks on installed findlib META files" 18description: """ 19By now, only checks that META files declare a ``archive`` variable 20with a ``plugin`` predicate for each ``archive`` variable declared 21with a ``native`` predicate. 22 23### Usage 24```` 25ocamlfind-lint # check all installed packages 26ocamlfind-lint pkg # check only the installed package pkg and its subpackages 27````""" 28flags: light-uninstall 29url { 30 src: 31 "https://github.com/ocaml/opam-source-archives/raw/main/ocamlfind-lint-0.1.0.tar.gz" 32 checksum: [ 33 "sha256=b050e7f79fb4badc8d90902ea8444a95c79019103bf3d3730508551cd1f8376a" 34 "md5=74b3f70eac0cabcd51b317fc73dbfc69" 35 ] 36} 37extra-source "ocamlfind-lint.install" { 38 src: 39 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/ocamlfind-lint/ocamlfind-lint.install" 40 checksum: [ 41 "sha256=f7ca667caad11668a456e5361ce0c3b274b780a6b279696ecff50471bcad795c" 42 "md5=b0a7863158805e2f08baa791fa4e61ef" 43 ] 44}