this repo has no description

Merge pull request #24150 from yallop/memcpy-0.2.2

Add memcpy 0.2.2

Changed files
+38
packages
memcpy
memcpy.0.2.2
+38
packages/memcpy/memcpy.0.2.2/opam
···
+
opam-version: "2.0"
+
maintainer: "yallop@gmail.com"
+
homepage: "https://github.com/yallop/ocaml-memcpy"
+
dev-repo: "git+http://github.com/yallop/ocaml-memcpy.git"
+
bug-reports: "http://github.com/yallop/ocaml-memcpy/issues"
+
license: "MIT"
+
build: [
+
[make]
+
[make "test"] {with-test}
+
]
+
install: [[make "install"]]
+
remove: [["ocamlfind" "remove" "memcpy"]]
+
depends: [
+
"ocaml" {>= "4.01.0"}
+
"ocaml" {>= "4.08.0" & with-test}
+
"ctypes" {>= "0.12.0"}
+
"ounit" {with-test}
+
"ocamlfind" {build}
+
"ocamlbuild" {build}
+
]
+
conflicts: [ "ocaml-option-bytecode-only" ]
+
tags: ["org:mirage"]
+
synopsis: "Safe and efficient copying between blocks of memory."
+
description: """
+
There are several ways of storing and accessing blocks of memory in an OCaml program, including
+
+
* bytes and string values for mutable and immutable strings that reside in the OCaml heap
+
* bigarray values for reference-counted blocks that reside in the OCaml heaps
+
* Ctypes ptr values that can be used to address arbitrary addresses using typed descriptions of the memory layout.
+
* Ctypes array values that provide bounds-checked access to ptr-addressed memory.
+
+
The Memcpy module provides functions for safely and efficiently copying blocks of memory between these different representations."""
+
authors: "yallop@gmail.com"
+
flags: light-uninstall
+
url {
+
src: "https://github.com/yallop/ocaml-memcpy/archive/0.2.2.tar.gz"
+
checksum: "md5=fb9e5a03cbda062c7a7f509f8e73cd7c"
+
}