package rpmfile

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

1.0.0.tar.gz
md5=101815a0802946784201f81f0e78c748
sha512=c13ff0435543254b2517b70eb67ae8ff02ff926858ab551696cea54ce122df81ebbc4e01a86b423d7bbdc1851dec1ddd9e719c7077548b910874d924e44d67b1

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