Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --λ for meta in /home/danmey/ocamlbrew/ocaml-4.00.0/build/install-batteries-included/batteries-included/**/*META*; do echo '*********************'$meta; cat $meta; done
- *********************/home/danmey/ocamlbrew/ocaml-4.00.0/build/install-batteries-included/batteries-included/build/camlzip/META
- name="zip"
- version="1.03"
- description="reading and writing ZIP, JAR and GZIP files"
- requires="unix"
- archive(byte)="zip.cma"
- archive(native)="zip.cmxa"
- *********************/home/danmey/ocamlbrew/ocaml-4.00.0/build/install-batteries-included/batteries-included/build/optcomp/META
- # -*- conf-mode -*-
- name = "optcomp"
- version = "1.1"
- description = "Optional compilation with cpp-like directives"
- requires = "camlp4"
- archive(syntax, preprocessor) = "pa_optcomp.cmo"
- *********************/home/danmey/ocamlbrew/ocaml-4.00.0/build/install-batteries-included/batteries-included/libs/estring/META
- # -*- conf -*-
- description = "syntax extension for extended strings"
- version = "1.0"
- requires = "camlp4"
- archive(syntax,preprocessor) = "pa_estring.cmo"
- archive(syntax,toploop) = "pa_estring.cmo pa_estring_top.cmo"
- *********************/home/danmey/ocamlbrew/ocaml-4.00.0/build/install-batteries-included/batteries-included/META.in
- name="batteries"
- version="@VERSION@"
- description="Batteries Included, the stdlib of choice"
- requires ="unix,num,bigarray,str"
- requires(mt)+="threads"
- archive(toploop) ="batteries.cma batteriesHelp.cmo"
- archive(toploop,mt)+="batteriesThread.cma"
- archive(byte) ="batteries.cma"
- archive(byte,mt) +="batteriesThread.cma"
- archive(native) ="batteries.cmxa"
- archive(native,mt) +="batteriesThread.cmxa"
- package "qtest" (
- description = "QTest, the testing framwork of choice"
- version = "@VERSION@"
- requires = "unix,oUnit"
- archive(byte) = "qtest.cma"
- archive(native) = "qtest.cmxa"
- )
- package "pa_string" (
- description = "pseudo-native Unicode strings (container)"
- version = "@VERSION@"
- package "syntax" (
- requires="camlp4,estring"
- description = "pseudo-native Unicode strings (syntax extension)"
- version = "@VERSION@"
- archive(syntax, preprocessor) = "pa_strings.cma"
- archive(syntax, toploop) = "pa_strings.cma"
- )
- )
- package "pa_comprehension" (
- description = "comprehension expressions (container)"
- version = "@VERSION@"
- package "syntax" (
- requires = "camlp4"
- description = "comprehension expressions (syntax extension)"
- version = "@VERSION@"
- archive(syntax, preprocessor) = "pa_comprehension.cmo"
- archive(syntax, toploop) = "pa_comprehension.cmo"
- )
- )
- package "pa_llist" (
- descriptions = "lazy list syntax (container)"
- version = "@VERSION@"
- package "syntax" (
- requires = "camlp4"
- description = "lazy list syntax (syntax extension)"
- version = "@VERSION@"
- archive(syntax, preprocessor) = "pa_llist.cmo"
- archive(syntax, toploop) = "pa_llist.cmo"
- )
- )
- package "syntax" (
- version = "@VERSION@"
- description = "Standard extensions to the OCaml language, full package"
- # the direct approach (requiring the .syntax packages) doesn't work:
- # you get "When using -syntax, the META variable 'preprocessor' must
- # be set" even when we require camlp4 or set preprocessor here, so
- # we use a brute-force approach
- requires = "camlp4, estring"
- requires(toploop) = "camlp4, estring, batteries"
- archive(syntax, preprocessor) = "pa_strings.cma pa_comprehension.cmo pa_llist.cmo"
- archive(syntax, toploop) = "pa_strings.cma pa_comprehension.cmo pa_llist.cmo"
- )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement