Skip to content

Commit

Permalink
reformat opam file
Browse files Browse the repository at this point in the history
  • Loading branch information
anuragsoni committed Mar 23, 2020
1 parent 06d86c8 commit 889d4ed
Showing 1 changed file with 13 additions and 22 deletions.
35 changes: 13 additions & 22 deletions routes.opam
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
opam-version: "2.0"
synopsis: "Typed routing for OCaml applications"
description: """
routes provides combinators for adding typed routing
to OCaml applications. The core library will be independent
of any particular web framework or runtime. It does
path based dispatch from a target url to a user
provided handler.
"""
maintainer: ["Anurag Soni <anurag@sonianurag.com>"]
authors: ["Anurag Soni <anurag@sonianurag.com>"]
license: "BSD-3-clause"
tags: ["router" "http"]
homepage: "https://github.com/anuragsoni/routes"
doc: "https://anuragsoni.github.io/routes/"
bug-reports: "https://github.com/anuragsoni/routes/issues"
dev-repo: "git+https://github.com/anuragsoni/routes.git"
doc: "https://anuragsoni.github.io/routes/"
tags: ["router" "http"]
depends: [
"ocaml" {>= "4.05.0"}
"dune"
Expand All @@ -22,16 +15,14 @@ depends: [
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
dev-repo: "git+https://github.com/anuragsoni/routes.git"
synopsis: "Typed routing for OCaml applications"
description: """
routes provides combinators for adding typed routing
to OCaml applications. The core library will be independent
of any particular web framework or runtime. It does
path based dispatch from a target url to a user
provided handler.
"""

0 comments on commit 889d4ed

Please sign in to comment.