this repo has no description
1opam-version: "2.0" 2maintainer: "Edgar Aroutiounian <edgar.factorial@gmail.com>" 3authors: "Edgar Aroutiounian <edgar.factorial@gmail.com>" 4homepage: "http://hyegar.com" 5bug-reports: "https://github.com/fxfactorial/ocaml-libssh/issues" 6license: "BSD-3-Clause" 7tags: "clib:ssh" 8dev-repo: "git+https://github.com/fxfactorial/ocaml-libssh.git" 9build: [ 10 ["oasis" "setup"] 11 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 12 ["ocaml" "setup.ml" "-build"] 13 ["oasis" "setup"] {with-test} 14 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 15 ["ocaml" "setup.ml" "-build"] {with-test} 16# ["ocaml" "setup.ml" "-test"] {with-test} 17 ["ocaml" "setup.ml" "-doc"] {with-doc} 18] 19install: ["ocaml" "setup.ml" "-install"] 20remove: ["ocamlfind" "remove" "ssh"] 21depends: [ 22 "ocaml" {>= "4.02.3"} 23 "oasis" {build & >= "0.4"} 24 "ocamlfind" {build} 25 "ocamlbuild" {build} 26] 27depexts: [ 28 ["libssh-devel"] {os-distribution = "centos"} 29 ["libssh-dev"] {os-family = "debian"} 30 ["libssh"] {os-distribution = "homebrew" & os = "macos"} 31] 32post-messages: [ 33 "This package requires libssh https://www.libssh.org on your system" 34 {failure} 35] 36synopsis: "Bindings to libssh" 37description: """ 38Bindings to libssh, https://www.libssh.org. This library exposes both 39the Client and Server side implementations of ssh.""" 40flags: light-uninstall 41url { 42 src: "https://github.com/fxfactorial/ocaml-libssh/archive/v0.1.tar.gz" 43 checksum: [ 44 "sha256=30dfb3523c1d093ed04ca300732fedb2cfca58c38d7ab5e23a974cacbbf4502f" 45 "md5=5eea8bf42523058cd1a6c9bada7f5b3f" 46 ] 47}