forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Xavier Guérin
committed
Jan 11, 2018
1 parent
ff53c56
commit 8b21a63
Showing
3 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
bitstrings and bitstring matching for OCaml | ||
The ocaml-bitstring project adds Erlang-style bitstrings and matching over bitstrings as a syntax extension and library for OCaml. | ||
You can use this module to both parse and generate binary formats, files and protocols. | ||
Bitstring handling is added as primitives to the language, making it exceptionally simple to use and very powerful. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
authors : [ "Richard W.M. Jones" "Xavier R. Guérin" ] | ||
bug-reports : "https://github.com/xguerin/bitstring/issues" | ||
dev-repo : "https://github.com/xguerin/bitstring.git" | ||
doc : "https://xguer.in/bitstring" | ||
homepage : "https://github.com/xguerin/bitstring" | ||
license : "LGPLv2+ with exceptions and GPLv2+" | ||
maintainer : "Xavier R. Guérin <[email protected]>" | ||
opam-version : "1.2" | ||
version : "3.0.0" | ||
|
||
build: [ | ||
["jbuilder" "build" "-p" name "-j" jobs] | ||
] | ||
|
||
build-test: [ | ||
["jbuilder" "runtest" "-p" name "-j" jobs] | ||
] | ||
|
||
depends: [ | ||
"jbuilder" { build } | ||
"ppx_tools_versioned" { build } | ||
"ocaml-migrate-parsetree" { build & >= "1.0.5" } | ||
"ounit" { test } | ||
] | ||
|
||
conflicts: [ | ||
"ppx_bitstring" | ||
] | ||
|
||
available: ocaml-version >= "4.02.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
archive: "https://github.com/xguerin/bitstring/archive/v3.0.0.tar.gz" | ||
checksum: "446357daa32d6cd71348bb5a8b1c105f" |