this repo has no description
1opam-version: "2.0" 2synopsis: "Bindings to the dash shell's parser" 3maintainer: "Michael Greenberg <michael.greenberg@pomona.edu>" 4authors: "Michael Greenberg <michael.greenberg@pomona.edu>" 5license: "BSD" 6homepage: "https://github.com/mgree/libdash" 7bug-reports: "https://github.com/mgree/libdash/issues" 8depends: [ 9 "ocaml" {>= "4.0.7"} 10 "ocamlfind" {>= "1.8.0"} 11 "ctypes" {>= "0.11.5" & < "0.18.0"} 12 "ctypes-foreign" {>= "0.4.0"} 13 "conf-autoconf" {build} 14 "conf-aclocal" {build} 15 "conf-libtool" {build} 16] 17build: [ 18 ["libtoolize"] {os != "macos"} 19 ["glibtoolize"] {os = "macos"} 20 ["aclocal"] 21 ["autoheader"] 22 ["automake" "--add-missing"] 23 ["autoconf"] 24 ["mkdir" "_build"] 25 ["./configure" "--prefix=%{build}%/_build"] 26 [make] 27 [make "install"] # into _build 28 [make "-C" "ocaml" "all"] 29 ["./mk_dot_install.sh"] 30 ["./ldconfig.sh"] # fix up .so files if ldconfig didn't do it 31 [make "-C" "ocaml" "test"] {with-test} 32] 33dev-repo: "git+https:///github.com/mgree/libdash" 34url { 35 src: "https://github.com/mgree/libdash/archive/v0.1.1.tar.gz" 36 checksum: [ 37 "md5=a9a2fbc37e7671cb1ae268da2be3aa43" 38 "sha512=35f2f29ed06c6522a86ab18dab482db585fe2d331fcbd56d0e80fbb852583159a14a7f64e0b49d2f6fcf502d1b1147793a99f9cfbc3d966b0ab9dff74d820ddc" 39 ] 40}