this repo has no description
1opam-version: "2.0" 2maintainer: "yoann.padioleau@gmail.com" 3authors: [ "Yoann Padioleau <yoann.padioleau@gmail.com>" ] 4homepage: "https://github.com/facebook/pfff/wiki/Main" 5build: [ 6 ["./configure" "--novisual" "--nocmt" "--nobytecode"] 7 [make "depend"] 8 [make] 9 [make "opt"] 10] 11install: [ 12 [make "install-libs"] 13] 14depends: [ 15 "ocaml" {>= "4.03.0" & < "4.09"} 16 "camlp4" 17 "num" 18 "ocamlgraph" 19 "json-wheel" 20] 21bug-reports: "https://github.com/aryx/pfff/issues" 22dev-repo: "git+https://github.com/aryx/pfff.git" 23license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 24synopsis: 25 "Tools and APIs for program analysis, code visualization, refactoring" 26description: """ 27pfff is a set of tools and APIs to perform some static analysis, 28dynamic analysis, code visualizations, code navigations, or 29style-preserving source-to-source transformations such as refactorings 30on source code. For now the effort is focused on PHP but there is also 31good support for C, C++, Java, HTML, Javascript, Css, and preliminary 32support for Erlang, Python, C#, Lisp, Scheme, Haskell, OPA, Sql, and 33even TeX. There is also very good support for OCaml and noweb 34(literate programming) so that pfff can be used on the code of pfff 35itself. 36 37For more information see https://github.com/facebook/pfff/wiki/Main""" 38url { 39 src: "https://github.com/aryx/pfff/archive/0.37.1.tar.gz" 40 checksum: [ 41 "sha256=d5be49a8ee9d26bff98b902533e0bde59cf1613a6e8f15651492205434f35c0e" 42 "md5=637a4f055de86bf02ad372b45e5567a9" 43 ] 44}