package oui

  1. Overview
  2. Docs
A tool that builds standalone installers for your OCaml applications

Install

dune-project
 Dependency

Authors

Maintainers

Sources

oui-0.1.0.tbz
sha256=b806a63c9acd581a00729a48f1faf86b294cc82936fc705fc628a20ede33f977
sha512=e61c35a6e08671634c1edabd7b0add926ac6e0c6c43c9e0a095e89efab7696b6ae5cc1ea0844283a80640c19adb36478bdfb2414bbcab5077ceb7fd16ae45e66

doc/oui.lib/Oui/Install_name_tool/index.html

Module Oui.Install_name_toolSource

Helpers for modifying dynamic library paths in macOS binaries using install_name_tool.

Sourceval relocate_to_rpath : OpamFilename.t -> unit

relocate_to_rpath binary converts dylib paths to @rpath. WARNING: only uses basename!

Sourceval relocate_to_executable_path : OpamFilename.t -> unit

relocate_to_executable_path binary converts embeddable dylib paths to @executable_path/../Frameworks/dylibname (standard .app bundle structure). Only the basename of each dylib is preserved.

Sourceval relocate_to_executable_path_custom : OpamFilename.t -> subdir:string -> unit

relocate_to_executable_path_custom binary ~subdir converts embeddable dylib paths to @executable_path/subdir/dylibname. Only the basename of each dylib is preserved.