From 0831d4da038e61eccc630b87d57859fd5d6151ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reynir=20Bj=C3=B6rnsson?= Date: Fri, 24 Jan 2025 15:27:41 +0100 Subject: [PATCH] Add owee fork without unix dependency --- packages/owee.0.7/opam | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 packages/owee.0.7/opam diff --git a/packages/owee.0.7/opam b/packages/owee.0.7/opam new file mode 100644 index 0000000..c9a582b --- /dev/null +++ b/packages/owee.0.7/opam @@ -0,0 +1,27 @@ +opam-version: "2.0" +name: "owee" +version: "0.7" +synopsis: "OCaml library to work with DWARF format" +description: """\ +Owee is an experimental library to work with DWARF format. +It can parse ELF binaries and interpret DWARF debugline programs. + +It can also be used to find locations of functions from the current process.""" +maintainer: "Frédéric Bour " +authors: "Frédéric Bour " +license: "MIT" +homepage: "https://github.com/let-def/owee" +bug-reports: "https://github.com/let-def/owee" +depends: [ + "ocaml" {>= "4.06"} + "dune" {>= "2.0"} +] +available: arch != "x86_32" & arch != "arm32" +build: [ + ["dune" "subst"] {dev} + ["dune" "build" "-p" name "-j" jobs] +] +dev-repo: "git+https://github.com/let-def/owee.git" +url { + src: "git+https://github.com/robur-coop/owee.git#unix-free" +}