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-3-Clause"
6homepage: "https://github.com/mgree/libdash"
7bug-reports: "https://github.com/mgree/libdash/issues"
8depends: [
9 "ocaml" {>= "4.07"}
10 "ocamlfind" {>= "1.8.0"}
11 "ctypes" {>= "0.18.0"}
12 "ctypes-foreign" {>= "0.18.0"}
13 "atdgen" {>= "2.3.2" & < "2.16.0"}
14 "conf-autoconf" {build}
15 "conf-aclocal" {build}
16 "conf-libtool" {build}
17]
18build: [
19 ["libtoolize"] {os != "macos"}
20 ["glibtoolize"] {os = "macos"}
21 ["aclocal"]
22 ["autoheader"]
23 ["automake" "--add-missing"]
24 ["autoconf"]
25 ["mkdir" "_build"]
26 ["./configure" "--prefix=%{build}%/_build"]
27 [make]
28 [make "install"] # into _build
29 ["ocaml/mk_meta.sh" "%{_:lib}%"] # pass along the lib directory for the rpath in the META
30 [make "-C" "ocaml" "all"]
31 ["./mk_dot_install.sh"]
32 ["./ldconfig.sh"] # fix up .so files if ldconfig didn't do it
33 [make "-C" "ocaml" "test"] {with-test}
34]
35dev-repo: "git+https:///github.com/mgree/libdash"
36url {
37 src: "https://github.com/mgree/libdash/archive/v0.3.tar.gz"
38 checksum: [
39 "sha256=6be99e762f700bb4797750b1e57d037d640ecbae67983a5b778051b623194bf1"
40 "md5=e6d8f86ca8973336f92d2010de21b1ea"
41 ]
42}