Skip to content

Commit e2443ad

Browse files
authored
Merge pull request #26871 from mpu/selfie
add selfie 0.1
2 parents 7d45112 + 3903126 commit e2443ad

File tree

1 file changed

+31
-0
lines changed
  • packages/selfie/selfie.0.1

1 file changed

+31
-0
lines changed

packages/selfie/selfie.0.1/opam

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
bug-reports: "[email protected]"
13+
maintainer: ["[email protected]"]
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+
}

0 commit comments

Comments
 (0)