this repo has no description
1opam-version: "2.0" 2synopsis: "Minimal desktop calculator for timestamps" 3description: """\ 4TCalc implements a minimal desktop calculator that in addition to 5 floating point numbers recognises durations in hh:min:sec format and 6 converts them to seconds. This can simplify time-based calculations. 7 This command-line application provides command-line editing and 8 history. Command math functions line sin or exp are available.""" 9maintainer: "Christian Lindig <lindig@gmail.com>" 10authors: "Christian Lindig <lindig@gmail.com>" 11license: "Unlicense" 12homepage: "https://github.com/lindig/tcalc" 13bug-reports: "https://github.com/lindig/tcalc/issues" 14depends: [ 15 "dune" {>= "2.7" & >= "2.0"} 16 "ocaml" {>= "4.13.0"} 17 "linenoise" {>= "1.3.1"} 18 "odoc" {with-doc} 19] 20available: os-family != "windows" 21build: [ 22 ["dune" "subst"] {dev} 23 [ 24 "dune" 25 "build" 26 "-p" 27 name 28 "-j" 29 jobs 30 "@install" 31 "@runtest" {with-test} 32 "@doc" {with-doc} 33 ] 34] 35dev-repo: "git+https://github.com/lindig/tcalc.git" 36url { 37 src: 38 "https://github.com/lindig/tcalc/releases/download/1.1.1/tcalc-1.1.1.tbz" 39 checksum: [ 40 "sha256=9808010647fd73a1ce1ce11e61ac2d5463e8eddba0fec8f69328d0ee923bad7d" 41 "sha512=54ab1d1e3d1f2ccf889f731ffcf61a2495653a819993782f940e4c827e17cb55b627e1b0a2425da20ec103e1735cc2f5ce493868db5fad803fac9214c17c558f" 42 ] 43} 44x-commit-hash: "9cf5e9c66b29408b3e9081e6d87d54404e970e9f"