package rpmfile

  1. Overview
  2. Docs
A pure OCaml library for parsing RPM files

Install

dune-project
 Dependency

Authors

Maintainers

Sources

1.1.0.tar.gz
md5=0eb303a5fa95fd0988b01735281a0ef7
sha512=7997c364529c676c7be3fa121b9d3115302d528919a4528a1f94d76ae6f0a8610fdb72e4e6cb8ce30ae7c05beae5a60d0b9a3141ae7186abae2edb5efc4dd713

doc/src/rpmfile.cpio/file_entry.ml.html

Source file file_entry.ml

1
2
3
4
5
6
7
(** A file record of archive. *)

type t = { metadata : Header.t; filename : string; contents : contents }
and t_with_string_payload = t
and t_with_bigstring_payload = t
and t_without_payload = t
and contents = [ `String of string | `Bigstring of string ] option