-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
33 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,19 @@ | ||
(lang dune 3.4) | ||
|
||
(name kittyimg) | ||
|
||
(lang dune 2.0) | ||
(generate_opam_files true) | ||
|
||
(source | ||
(github username/reponame)) | ||
|
||
(authors "Author Name") | ||
|
||
(maintainers "Maintainer Name") | ||
|
||
(license LICENSE) | ||
|
||
(documentation https://url/to/documentation) | ||
(name kittyimg) | ||
(version 0.1) | ||
(source (github Armael/ocaml-kittyimg)) | ||
(authors "Armaël Guéneau <[email protected]>") | ||
(maintainers "Armaël Guéneau <[email protected]>") | ||
(license MIT) | ||
|
||
(package | ||
(name kittyimg) | ||
(synopsis "A short synopsis") | ||
(description "A longer description") | ||
(depends ocaml dune) | ||
(tags | ||
(topics "to describe" your project))) | ||
|
||
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project | ||
(synopsis "An implementation of Kitty's terminal graphics protocol") | ||
(description "Kitty's terminal graphics protocol allows displaying images in compatible terminal emulators") | ||
(depends | ||
(ocaml (>= 4.08)) | ||
(dune (>= 2.0)) | ||
(base64 (>= 3.0.0)) | ||
)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "A short synopsis" | ||
description: "A longer description" | ||
maintainer: ["Maintainer Name"] | ||
authors: ["Author Name"] | ||
license: "LICENSE" | ||
tags: ["topics" "to describe" "your" "project"] | ||
homepage: "https://github.com/username/reponame" | ||
doc: "https://url/to/documentation" | ||
bug-reports: "https://github.com/username/reponame/issues" | ||
version: "0.1" | ||
synopsis: "An implementation of Kitty's terminal graphics protocol" | ||
description: | ||
"Kitty's terminal graphics protocol allows displaying images in compatible terminal emulators" | ||
maintainer: ["Armaël Guéneau <[email protected]>"] | ||
authors: ["Armaël Guéneau <[email protected]>"] | ||
license: "MIT" | ||
homepage: "https://github.com/Armael/ocaml-kittyimg" | ||
bug-reports: "https://github.com/Armael/ocaml-kittyimg/issues" | ||
depends: [ | ||
"ocaml" | ||
"dune" {>= "3.4"} | ||
"odoc" {with-doc} | ||
"ocaml" {>= "4.08"} | ||
"dune" {>= "2.0"} | ||
"base64" {>= "3.0.0"} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["dune" "subst"] {pinned} | ||
[ | ||
"dune" | ||
"build" | ||
|
@@ -28,4 +28,4 @@ build: [ | |
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/username/reponame.git" | ||
dev-repo: "git+https://github.com/Armael/ocaml-kittyimg.git" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters