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