File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
packages/selfie/selfie.0.1 Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ opam-version: "2.0"
2
+ synopsis: "Unix process snapshotting library"
3
+ description: """
4
+ Selfie exposes a function to write to disk an ELF executable that
5
+ snapshots the current state. When run, the output file continues
6
+ as if the program had just returned from the selfie library.
7
+ """
8
+ authors: "Quentin Carbonneaux"
9
+ license: "MIT"
10
+ homepage: "http://c9x.me/git/selfie.git"
11
+ dev-repo: "git://c9x.me/selfie.git"
12
+
13
+
14
+ depends: [
15
+ "ocaml" {< "5.0.0" }
16
+ "ocamlfind" {build}
17
+ ]
18
+ available: arch = "x86_64" & os = "linux" & os-family != "alpine"
19
+ build: [
20
+ [make "selfie.cma"]
21
+ ]
22
+ install: [
23
+ ["ocamlfind" "install" "selfie" "META" "selfie.cmi" "selfie.cma" "dllcaml_selfie.so"]
24
+ ]
25
+ remove: [
26
+ ["ocamlfind" "remove" "selfie"]
27
+ ]
28
+ url {
29
+ src: "http://c9x.me/selfie/release/selfie-0.1.tar.xz"
30
+ checksum: "sha256=3c32c16f70d25c643eef1699bb4e63a5bbd02314f22654766f54df7334e8fff0"
31
+ }
You can’t perform that action at this time.
0 commit comments