(lang dune 3.17)
(name ogg)
(version 1.0.0)
(sections
 (lib /usr/lib/s390x-linux-gnu/ocaml/5.3.0/ogg)
 (libexec /usr/lib/s390x-linux-gnu/ocaml/5.3.0/ogg)
 (doc /usr/doc/ogg)
 (stublibs /usr/lib/s390x-linux-gnu/ocaml/5.3.0/stublibs))
(files
 (lib
  (META
   decoder/ogg_decoder.a
   decoder/ogg_decoder.cma
   decoder/ogg_decoder.cmi
   decoder/ogg_decoder.cmt
   decoder/ogg_decoder.cmti
   decoder/ogg_decoder.cmx
   decoder/ogg_decoder.cmxa
   decoder/ogg_decoder.ml
   decoder/ogg_decoder.mli
   dune-package
   libogg_stubs.a
   ocaml-ogg.h
   ogg.a
   ogg.cma
   ogg.cmi
   ogg.cmt
   ogg.cmti
   ogg.cmx
   ogg.cmxa
   ogg.ml
   ogg.mli
   opam))
 (libexec (decoder/ogg_decoder.cmxs ogg.cmxs))
 (doc (CHANGES.md README.md))
 (stublibs (dllogg_stubs.so)))
(library
 (name ogg)
 (kind normal)
 (synopsis "OCaml bindings for libogg")
 (archives (byte ogg.cma) (native ogg.cmxa))
 (plugins (byte ogg.cma) (native ogg.cmxs))
 (foreign_objects ogg_stubs.o)
 (foreign_archives (archives (for all) (files libogg_stubs.a)))
 (foreign_dll_files ../stublibs/dllogg_stubs.so)
 (native_archives ogg.a)
 (requires threads)
 (main_module_name Ogg)
 (modes byte native)
 (modules
  (singleton
   (obj_name ogg)
   (visibility public)
   (source (path Ogg) (intf (path ogg.mli)) (impl (path ogg.ml))))))
(library
 (name ogg.decoder)
 (kind normal)
 (synopsis "Ogg decoding library with pluggable decoders")
 (archives (byte decoder/ogg_decoder.cma) (native decoder/ogg_decoder.cmxa))
 (plugins (byte decoder/ogg_decoder.cma) (native decoder/ogg_decoder.cmxs))
 (native_archives decoder/ogg_decoder.a)
 (requires ogg)
 (main_module_name Ogg_decoder)
 (modes byte native)
 (modules
  (singleton
   (obj_name ogg_decoder)
   (visibility public)
   (source
    (path Ogg_decoder)
    (intf (path decoder/ogg_decoder.mli))
    (impl (path decoder/ogg_decoder.ml))))))
