-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathopam
More file actions
31 lines (29 loc) · 726 Bytes
/
opam
File metadata and controls
31 lines (29 loc) · 726 Bytes
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
opam-version: "1.2"
name: "profuse"
maintainer: "sheets@alum.mit.edu"
authors: "David Sheets"
homepage: "https://github.com/dsheets/profuse"
bug-reports: "https://github.com/dsheets/profuse/issues"
dev-repo: "https://github.com/dsheets/profuse.git"
license: "ISC"
build: [make "build"]
build-test: [
["./configure" "--enable-tests"]
[make "test"]
]
install: [make "install"]
remove: ["ocamlfind" "remove" "profuse"]
depends: [
"ocamlfind" {build}
"unix-errno" {>= "0.4.1"}
"unix-sys-stat"
"unix-dirent" {>= "0.3.0"}
"unix-unistd"
"unix-fcntl"
"stringext"
"ctypes" {>= "0.4.0"}
"ctypes-foreign" # for unix-unistd for now
"memcpy"
"lwt" {test}
"alcotest" {test}
]