this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add selfie 0.1

+30
+30
packages/selfie/selfie.0.1/opam
··· 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: "magnet0+opam@c9x.me" 13 + maintainer: ["magnet0+opam@c9x.me"] 14 + depends: [ 15 + "ocaml" {< "5.0.0" } 16 + "ocamlfind" {build} 17 + ] 18 + available: os = "linux" 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 + git: "git://c9x.me/selfie.git#47c30106cb3e74bff960fccc9974f4762d42b2c3" 30 + }