this repo has no description
1opam-version: "2.0" 2synopsis: "A basic execution runner for cmdlang based on stdlib.arg" 3maintainer: ["Mathieu Barbin <opensource@mbarbin.org>"] 4authors: ["Mathieu Barbin"] 5license: "MIT" 6homepage: "https://github.com/mbarbin/cmdlang" 7doc: "https://mbarbin.github.io/cmdlang/" 8bug-reports: "https://github.com/mbarbin/cmdlang/issues" 9depends: [ 10 "dune" {>= "3.16"} 11 "ocaml" {>= "4.14"} 12 "cmdlang" {= version} 13 "odoc" {with-doc} 14] 15build: [ 16 ["dune" "subst"] {dev} 17 [ 18 "dune" 19 "build" 20 "-p" 21 name 22 "-j" 23 jobs 24 "@install" 25 "@runtest" {with-test} 26 "@doc" {with-doc} 27 ] 28] 29dev-repo: "git+https://github.com/mbarbin/cmdlang.git" 30description: """\ 31 32[Cmdlang_stdlib_runner] is an execution engine for running command 33line programs specified with [cmdlang]. 34 35It has no dependencies other than [cmdlang] and is implemented using 36the [Arg] module from the OCaml standard library. 37 38This package may be useful as a lightweight alternative to translating 39cmdlang parsers to more feature-rich libraries such as [cmdliner], 40[climate], or [core.command]. 41 42""" 43tags: [ "cli" "cmdlang" "stdlib.arg" ] 44x-maintenance-intent: [ "(latest)" ] 45url { 46 src: 47 "https://github.com/mbarbin/cmdlang/releases/download/0.0.9/cmdlang-0.0.9.tbz" 48 checksum: [ 49 "sha256=44fc0027cc27a8d6b511bbde81b0d31306ec1a3d599476d5bd058510f39e87ef" 50 "sha512=e1a18905ff6035eb4c44aed71df0e3d42b8277db9a6e98fe571a3b17428c9ef0a26006cb27b729a60208a8357398decc6a8601caca74dabd2e6de7636bc60b31" 51 ] 52} 53x-commit-hash: "c9c2c1773e374f61f890b4ae36d09a1195010a4c"