-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Showing
1 changed file
with
52 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,52 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "Reorder files in an archive to improve its compression" | ||
description: """ | ||
Compute a similarity between files and order them according to that in order to store them in an archive with improved compression thanks to better data locality. | ||
""" | ||
maintainer: ["Adrien Nader <[email protected]>"] | ||
authors: ["Adrien Nader <[email protected]>"] | ||
license: " GPL-3.0-or-later" | ||
tags: ["compression"] | ||
homepage: "https://gitlab.com/adrien-n/compsort" | ||
doc: "https://gitlab.com/adrien-n/compsort" | ||
bug-reports: "https://gitlab.com/adrien-n/compsort/-/issues" | ||
depends: [ | ||
"ocaml" {>= "5.2.0"} | ||
"dune" {>= "3.16"} | ||
"odoc" {with-doc} | ||
"bigstringaf" | ||
"cmdliner" {>= "1.1.0"} | ||
"conf-gmp" {>= "2"} | ||
"data-encoding" {>= "1.0.1"} | ||
"domainslib" {>= "0.5.1"} | ||
"imagelib" | ||
"json-data-encoding" | ||
"logs" | ||
"murmur3" | ||
"prbnmcn-clustering" {>= "0.0.2"} | ||
"sqlite3" {>= "5.0.1"} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://gitlab.com/adrien-n/compsort.git" | ||
url { | ||
src: | ||
"https://gitlab.com/adrien-n/compsort/-/archive/0.9.2/compsort-0.9.2.tar.gz" | ||
checksum: [ | ||
"md5=57169fd2b0f16bbc82c45b85cd489496" | ||
"sha512=f11e0e9dc8ab7a712f96444fa9aafd0d5843ec656fc9dca368afcdfea5d0d23f51f8346287d34c2b5b1180fbac25d656fe59bef8e34b2849a9b5c912927f855d" | ||
] | ||
} |