this repo has no description
1opam-version: "2.0"
2maintainer: "Edgar Aroutiounian <edgar.factorial@gmail.com>"
3authors: "Edgar Aroutiounian <edgar.factorial@gmail.com>"
4homepage: "http://hyegar.com"
5bug-reports: "https://github.com/fxfactorial/brozip/issues"
6dev-repo: "git+https://github.com/fxfactorial/brozip.git"
7license: "BSD-3-Clause"
8build: [
9 ["oasis" "setup"]
10 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
11 ["ocaml" "setup.ml" "-build"]
12 ["oasis" "setup"] {with-test}
13 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test}
14 ["ocaml" "setup.ml" "-build"] {with-test}
15 ["ocaml" "setup.ml" "-test"] {with-test}
16]
17install: ["ocaml" "setup.ml" "-install"]
18remove: ["ocaml" "%{etc}%/brozip/_oasis_remove_.ml" "%{etc}%/brozip"]
19depends: [
20 "ocaml" {>= "4.02.3"}
21 "brotli" {build}
22 "cmdliner" {build}
23 "lwt" {build}
24 "oasis" {build & >= "0.4"}
25 "ocamlfind" {build}
26 "ocamlbuild" {build}
27]
28synopsis:
29 "CLI to concurrently compress, decompress files using the Brotli algorithm"
30description: """
31brozip is a command line tool to compress and decompress files using
32the Brotli algorithm, it uses OCaml bindings to the Google Brotli library."""
33url {
34 src: "https://github.com/fxfactorial/brozip/archive/v1.0.tar.gz"
35 checksum: [
36 "sha256=46a1921822fa5c4816547d96ebbb55dea5aca4d3c664f5af836c118515c43caa"
37 "md5=c9cf68cc8a57ce6498bcfa32d69dc5f5"
38 ]
39}
40extra-source "brozip.install" {
41 src:
42 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/brozip/brozip.install"
43 checksum: [
44 "sha256=5b010bcd931b45da20d8004cb55ee72cc8193b8b0fe12070896fbdb73a00517b"
45 "md5=0d1b822c897681cf54b3e1aed52dda99"
46 ]
47}
48extra-source "_oasis_remove_.ml" {
49 src:
50 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/brozip/_oasis_remove_.ml"
51 checksum: [
52 "sha256=30bd6759edf0096e5353751a0603eaf693cb60ea7485aa9418e257dfdb97d916"
53 "md5=6100ca146fa97d2196eb49a2631d0796"
54 ]
55}