Advertisement
Guest User

Untitled

a guest
Oct 7th, 2012
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 KB | None | 0 0
  1. --λ for meta in /home/danmey/ocamlbrew/ocaml-4.00.0/build/install-batteries-included/batteries-included/**/*META*; do echo '*********************'$meta; cat $meta; done
  2. *********************/home/danmey/ocamlbrew/ocaml-4.00.0/build/install-batteries-included/batteries-included/build/camlzip/META
  3. name="zip"
  4. version="1.03"
  5. description="reading and writing ZIP, JAR and GZIP files"
  6. requires="unix"
  7. archive(byte)="zip.cma"
  8. archive(native)="zip.cmxa"
  9. *********************/home/danmey/ocamlbrew/ocaml-4.00.0/build/install-batteries-included/batteries-included/build/optcomp/META
  10. # -*- conf-mode -*-
  11. name = "optcomp"
  12. version = "1.1"
  13. description = "Optional compilation with cpp-like directives"
  14. requires = "camlp4"
  15. archive(syntax, preprocessor) = "pa_optcomp.cmo"
  16. *********************/home/danmey/ocamlbrew/ocaml-4.00.0/build/install-batteries-included/batteries-included/libs/estring/META
  17. # -*- conf -*-
  18. description = "syntax extension for extended strings"
  19. version = "1.0"
  20. requires = "camlp4"
  21. archive(syntax,preprocessor) = "pa_estring.cmo"
  22. archive(syntax,toploop) = "pa_estring.cmo pa_estring_top.cmo"
  23. *********************/home/danmey/ocamlbrew/ocaml-4.00.0/build/install-batteries-included/batteries-included/META.in
  24. name="batteries"
  25. version="@VERSION@"
  26. description="Batteries Included, the stdlib of choice"
  27. requires ="unix,num,bigarray,str"
  28. requires(mt)+="threads"
  29. archive(toploop) ="batteries.cma batteriesHelp.cmo"
  30. archive(toploop,mt)+="batteriesThread.cma"
  31. archive(byte) ="batteries.cma"
  32. archive(byte,mt) +="batteriesThread.cma"
  33. archive(native) ="batteries.cmxa"
  34. archive(native,mt) +="batteriesThread.cmxa"
  35.  
  36. package "qtest" (
  37. description = "QTest, the testing framwork of choice"
  38. version = "@VERSION@"
  39. requires = "unix,oUnit"
  40. archive(byte) = "qtest.cma"
  41. archive(native) = "qtest.cmxa"
  42. )
  43.  
  44. package "pa_string" (
  45. description = "pseudo-native Unicode strings (container)"
  46. version = "@VERSION@"
  47. package "syntax" (
  48. requires="camlp4,estring"
  49. description = "pseudo-native Unicode strings (syntax extension)"
  50. version = "@VERSION@"
  51. archive(syntax, preprocessor) = "pa_strings.cma"
  52. archive(syntax, toploop) = "pa_strings.cma"
  53. )
  54. )
  55.  
  56. package "pa_comprehension" (
  57. description = "comprehension expressions (container)"
  58. version = "@VERSION@"
  59. package "syntax" (
  60. requires = "camlp4"
  61. description = "comprehension expressions (syntax extension)"
  62. version = "@VERSION@"
  63. archive(syntax, preprocessor) = "pa_comprehension.cmo"
  64. archive(syntax, toploop) = "pa_comprehension.cmo"
  65. )
  66. )
  67.  
  68. package "pa_llist" (
  69. descriptions = "lazy list syntax (container)"
  70. version = "@VERSION@"
  71. package "syntax" (
  72. requires = "camlp4"
  73. description = "lazy list syntax (syntax extension)"
  74. version = "@VERSION@"
  75. archive(syntax, preprocessor) = "pa_llist.cmo"
  76. archive(syntax, toploop) = "pa_llist.cmo"
  77. )
  78. )
  79.  
  80. package "syntax" (
  81. version = "@VERSION@"
  82. description = "Standard extensions to the OCaml language, full package"
  83. # the direct approach (requiring the .syntax packages) doesn't work:
  84. # you get "When using -syntax, the META variable 'preprocessor' must
  85. # be set" even when we require camlp4 or set preprocessor here, so
  86. # we use a brute-force approach
  87. requires = "camlp4, estring"
  88. requires(toploop) = "camlp4, estring, batteries"
  89. archive(syntax, preprocessor) = "pa_strings.cma pa_comprehension.cmo pa_llist.cmo"
  90. archive(syntax, toploop) = "pa_strings.cma pa_comprehension.cmo pa_llist.cmo"
  91. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement