comby/comby.opam
2021-03-02 22:46:50 -07:00

57 lines
1.3 KiB
Plaintext

opam-version: "2.0"
maintainer: "rvantonder@gmail.com"
authors: "Rijnard van Tonder"
homepage: "https://github.com/comby-tools/comby"
bug-reports: "https://github.com/comby-tools/comby/issues"
dev-repo: "git+https://github.com/comby-tools/comby.git"
license: "Apache-2.0"
build: [
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
]
]
depends: [
"ocaml" {>= "4.08.1"}
"angstrom" {>= "0.15.0"}
"conf-autoconf"
"conf-gmp"
"conf-libpcre"
"conf-m4" {os = "linux"}
"conf-pkg-config"
"conf-sqlite3"
"conf-zlib" {os = "linux"}
"dune" {>= "2.7.0"}
"hack_parallel" {arch != "arm32" & arch != "arm64"}
"conduit-lwt-unix"
"core"
"lwt"
"lwt_react"
"opium"
"cohttp-lwt-unix"
"parany"
"patience_diff" {>= "v0.14" & < "v0.15"}
"ppxlib"
"ppx_deriving"
"ppx_deriving_yojson" {>= "3.6.0"}
"pcre"
"shell"
"toml" {>= "6.0.0"}
"tls"
"bisect_ppx" {with-test & dev & >= "2.5.0"}
]
synopsis: "A tool for structural code search and replace that supports ~every language"
description: """
Comby is a tool designed to make it easy to match change syntax for basically
every language. You can think of it like grep/sed, but with added ability to
recognize code blocks, expressions, and strings delimited by parentheses,
braces, quotes, and so on.
"""