-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfit.opam
38 lines (38 loc) · 1.02 KB
/
fit.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
opam-version: "2.0"
synopsis: "A parser for Garmin FIT data files"
description: """\
Fit is library for reading FIT files as they are produced by Garmin and
other fitness devices. It comes with a small command-line tool to emit
some of that information as JSON, mostly for debugging. Fit is not
comprehensive but reads the most important records from a FIT file that
contains the actual periodic measurements."""
maintainer: "Christian Lindig <lindig@gmail.com>"
authors: "Christian Lindig <lindig@gmail.com>"
license: "MIT"
homepage: "https://github.com/lindig/fit"
bug-reports: "https://github.com/lindig/fit/issues"
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.7" & >= "2.0"}
"cmdliner" {>= "1.1.0"}
"angstrom" {>= "0.15.0"}
"yojson" {>= "2.1.0"}
"rresult" {>= "0.6.0"}
"ptime" {>= "1.1.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/lindig/fit.git"