···11+opam-version: "2.0"
22+synopsis: "Unix process snapshotting library"
33+description: """
44+Selfie exposes a function to write to disk an ELF executable that
55+snapshots the current state. When run, the output file continues
66+as if the program had just returned from the selfie library.
77+"""
88+authors: "Quentin Carbonneaux"
99+license: "MIT"
1010+homepage: "http://c9x.me/git/selfie.git"
1111+dev-repo: "git://c9x.me/selfie.git"
1212+bug-reports: "magnet0+opam@c9x.me"
1313+maintainer: ["magnet0+opam@c9x.me"]
1414+depends: [
1515+ "ocaml" {< "5.0.0" }
1616+ "ocamlfind" {build}
1717+]
1818+available: os = "linux"
1919+build: [
2020+ [make "selfie.cma"]
2121+]
2222+install: [
2323+ ["ocamlfind" "install" "selfie" "META" "selfie.cmi" "selfie.cma" "dllcaml_selfie.so"]
2424+]
2525+remove: [
2626+ ["ocamlfind" "remove" "selfie"]
2727+]
2828+url {
2929+ git: "git://c9x.me/selfie.git#47c30106cb3e74bff960fccc9974f4762d42b2c3"
3030+}