-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CHANGES: Added light-themed terminal support
- Loading branch information
1 parent
5e7a27d
commit 35fbe5e
Showing
1 changed file
with
41 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
opam-version: "2.0" | ||
synopsis: "Ascend - Terminal Dungeon RPG adventure" | ||
description: | ||
"Venture into the depths to retrieve the stolen artifact, and ascend! NetHack lite." | ||
maintainer: ["[email protected]"] | ||
authors: ["eir"] | ||
license: "AGPL-3.0-only" | ||
tags: ["game" "terminal"] | ||
homepage: "https://github.com/m-laniakea/ascend" | ||
bug-reports: "https://github.com/m-laniakea/ascend/issues" | ||
depends: [ | ||
"ocaml" {>= "5.2.0"} | ||
"dune" {>= "3.16"} | ||
"notty" {>= "0.2.3"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/m-laniakea/ascend.git" | ||
available: [ os-family != "windows" ] | ||
url { | ||
src: | ||
"https://github.com/m-laniakea/ascend/releases/download/v0.1.1/ascend-0.1.1.tbz" | ||
checksum: [ | ||
"sha256=0da3a48c36aa4e4d0594342ed3d8a330b9d5cae3ac80659f39070cf181ea39a8" | ||
"sha512=d7c68105d83303022c678d1755069846939cb63ecee8e757ea5096859c199271a4a911442dacaa98861c09cde1d4b15d06300aa79db56c3dd52c2d21f8e85814" | ||
] | ||
} | ||
x-commit-hash: "81a472b431de895046c850c576cc029f38fc68d3" |