this repo has no description
1opam-version: "2.0"
2maintainer: "nv-vn <nv@cock.li>"
3authors: "nv-vn <nv@cock.li>"
4homepage: "https://github.com/nv-vn/ogen"
5bug-reports: "https://github.com/nv-vn/ogen/issues"
6license: "GPL-1.0-or-later"
7dev-repo: "git+https://github.com/nv-vn/ogen.git"
8build: [
9 ["./configure" "--prefix=%{prefix}%"]
10 [make]
11]
12install: ["cp" "./main.native" "%{bin}%/ogen"]
13remove: ["rm" "%{bin}%/ogen"]
14depends: [
15 "ocaml" {>= "4.02"}
16 "ocamlfind" {build}
17 "oasis" {build}
18 "batteries" {>= "2.0.0" & < "3.0.0"}
19 "linenoise" {>= "1.0.0"}
20 "ocaml-inifiles" {>= "1.2" & < "2.0"}
21 "yojson" {>= "1.3.0" & < "2.0.0"}
22 "ppx_blob" {>= "0.1"}
23 "ppx_deriving" {>= "4.0"}
24 "ppx_deriving_yojson" {>= "3.0"}
25]
26synopsis:
27 "A tool for creating new OCaml projects with OPAM, Oasis, and Merlin"
28description: """
29ogen is a command-line program to help generate some of the boilerplate involved
30in creating OCaml projects, such as the opam, _oasis, and .merlin files. ogen
31features a simple-to-use dialog that allows the user to input specific options for their
32repository, as well as a number of additional commands that allow the user to set options
33separately."""
34flags: light-uninstall
35url {
36 src: "https://github.com/nv-vn/ogen/archive/v0.1.4.tar.gz"
37 checksum: [
38 "sha256=ee57908d5518d4923778534b14a4784938bd09c824bd84031774eecf3495ff47"
39 "md5=9eb1dcf6d66b5a22249c90d268766ddc"
40 ]
41}