Skip to content

Commit 33c5c8b

Browse files
authored
Merge pull request ocaml#22793 from yilinwei/release-xcursor-v0.1.0
[new release] xcursor (0.1.0)
2 parents 718d4b0 + 951d7d6 commit 33c5c8b

File tree

1 file changed

+45
-0
lines changed
  • packages/xcursor/xcursor.0.1.0

1 file changed

+45
-0
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
opam-version: "2.0"
2+
synopsis: "A pure implementation of Xcursor in OCaml"
3+
description: """
4+
Xcursor is a de-facto standard for using cursors on Linux systems from Freedesktop. It defines a set
5+
of standard paths to search, a file format and a configuration format for users to customise cursors for desktop
6+
applications."""
7+
maintainer: ["Yilin Wei"]
8+
authors: ["Yilin Wei"]
9+
license: "MIT"
10+
tags: ["desktop" "gui" "cursor" "xcursor"]
11+
homepage: "https://github.com/yilinwei/ocaml-xcursor"
12+
doc: "https://yilinwei.github.io/ocaml-xcursor"
13+
bug-reports: "https://github.com/yilinwei/ocaml-xcursor/issues"
14+
depends: [
15+
"dune" {>= "3.6"}
16+
"ocaml" {>= "4.13.0"}
17+
"bigstringaf" {>= "0.9.0"}
18+
"angstrom" {>= "0.15.0"}
19+
"odoc" {with-doc}
20+
]
21+
build: [
22+
["dune" "subst"] {dev}
23+
[
24+
"dune"
25+
"build"
26+
"-p"
27+
name
28+
"-j"
29+
jobs
30+
"@install"
31+
"@runtest" {with-test}
32+
"@doc" {with-doc}
33+
]
34+
]
35+
dev-repo: "git+https://github.com/yilinwei/ocaml-xcursor.git"
36+
available: [ arch != "arm32" & arch != "x86_32" ]
37+
url {
38+
src:
39+
"https://github.com/yilinwei/ocaml-xcursor/releases/download/v0.1.0/xcursor-0.1.0.tbz"
40+
checksum: [
41+
"sha256=07eb44dcc4ecf6c796855515b0c69eba4bc06dab2b8fc7ed2db18a26ff651329"
42+
"sha512=710d55d1cacec24bf5258214228a08f9bdae08711f3b17733970c77892b15574997b60a6e41e68d93fcebdeeb30703db4cc9554da7b4a867401aca454c3027b2"
43+
]
44+
}
45+
x-commit-hash: "0300d12796945788407ac75fd20637671a547d71"

0 commit comments

Comments
 (0)