aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2022-02-07 16:00:42 +0100
committerSébastien Dailly <sebastien@dailly.me>2022-02-07 16:00:42 +0100
commitad526111f0dd619ae9e0e98ef2253146b58a068f (patch)
tree77317ec01b88f47e035770d8f993c033670e05eb
parent561d0f0155f4906d90eb7e73a3ff9cb28909126f (diff)
Update project description
-rwxr-xr-xMakefile3
-rwxr-xr-xdune-project23
-rwxr-xr-xsript.it.opam26
3 files changed, 52 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5799ef0..88fb750 100755
--- a/Makefile
+++ b/Makefile
@@ -9,3 +9,6 @@ serve:
clean:
dune clean
+
+deps:
+ opam install . --deps-only
diff --git a/dune-project b/dune-project
index 45acd3f..c26ba3f 100755
--- a/dune-project
+++ b/dune-project
@@ -1 +1,24 @@
(lang dune 2.7)
+
+(generate_opam_files true)
+(authors "Sébastien Dailly")
+(maintainers "Sébastien Dailly")
+
+(package
+ (name sript.it)
+ (synopsis "Calligraphy app")
+ (depends
+ (ocaml (>= 4.10.0))
+ (brr (>= 0.0.1))
+ (gg (>= 0.9.3))
+ )
+ )
+
+(package
+ (name editor)
+ (synopsis "Text editor")
+ (depends
+ (ocaml (>= 4.10.0))
+ (brr (>= 0.0.1))
+ )
+ )
diff --git a/sript.it.opam b/sript.it.opam
new file mode 100755
index 0000000..143ad97
--- /dev/null
+++ b/sript.it.opam
@@ -0,0 +1,26 @@
+# This file is generated by dune, edit dune-project instead
+opam-version: "2.0"
+synopsis: "Calligraphy app"
+maintainer: ["Sébastien Dailly"]
+authors: ["Sébastien Dailly"]
+depends: [
+ "dune" {>= "2.7"}
+ "ocaml" {>= "4.10.0"}
+ "brr" {>= "0.0.1"}
+ "gg" {>= "0.9.3"}
+ "odoc" {with-doc}
+]
+build: [
+ ["dune" "subst"] {dev}
+ [
+ "dune"
+ "build"
+ "-p"
+ name
+ "-j"
+ jobs
+ "@install"
+ "@runtest" {with-test}
+ "@doc" {with-doc}
+ ]
+]