-
Notifications
You must be signed in to change notification settings - Fork 6
/
opam
34 lines (34 loc) · 881 Bytes
/
opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
opam-version: "1.2"
name: "tsdl-ttf"
version: "0.2"
maintainer: "Julian Squires <[email protected]>"
authors: ["Julian Squires <[email protected]>"]
homepage: "http://github.com/tokenrove/tsdl-ttf"
dev-repo: "https://github.com/tokenrove/tsdl-ttf.git"
bug-reports: "http://github.com/tokenrove/tsdl-ttf/issues"
tags: [ "bindings" "graphics" ]
license: "BSD3"
depends: [
"ctypes" {>= "0.4.0"}
"ctypes-foreign"
"tsdl" {>= "0.9.0"}
"result"
"oasis" {build}
]
depexts: [
[["debian"] ["libsdl2-ttf-dev"]]
[["ubuntu"] ["libsdl2-ttf-dev"]]
[["osx" "homebrew"] ["sdl2_ttf"]]
]
build: [
[ "oasis" "setup" ]
[ "ocaml" "setup.ml" "-configure" ]
[ "ocaml" "setup.ml" "-build" ]
]
build-test:
[
[ "ocaml" "setup.ml" "-configure" "--enable-tests" ]
[ "ocaml" "setup.ml" "-test" ]
]
install: [[ "ocaml" "setup.ml" "-install" ]]
remove: [["ocamlfind" "remove" "tsdl_ttf"]]