(lang dune 3.20)
(name theora)
(version 1.0.0)
(sections
 (lib /usr/lib/i386-linux-gnu/ocaml/5.4.0/theora)
 (doc /usr/doc/theora)
 (stublibs /usr/lib/i386-linux-gnu/ocaml/5.4.0/stublibs))
(files
 (lib
  (META
   decoder/theora_decoder.cma
   decoder/theora_decoder.cmi
   decoder/theora_decoder.cmt
   decoder/theora_decoder.cmti
   decoder/theora_decoder.ml
   decoder/theora_decoder.mli
   dune-package
   libtheora_stubs.a
   opam
   theora.cma
   theora.cmi
   theora.cmt
   theora.cmti
   theora.ml
   theora.mli))
 (doc (CHANGES.md README.md))
 (stublibs (dlltheora_stubs.so)))
(library
 (name theora)
 (kind normal)
 (synopsis "OCaml bindings for libtheora")
 (archives (byte theora.cma))
 (plugins (byte theora.cma))
 (foreign_objects theora_stubs.o)
 (foreign_archives (archives (for all) (files libtheora_stubs.a)))
 (foreign_dll_files ../stublibs/dlltheora_stubs.so)
 (requires ogg)
 (main_module_name Theora)
 (modes byte)
 (modules
  (singleton
   (obj_name theora)
   (visibility public)
   (source (path Theora) (intf (path theora.mli)) (impl (path theora.ml))))))
(library
 (name theora.decoder)
 (kind normal)
 (synopsis "Theora decoder for the ogg-decoder library")
 (archives (byte decoder/theora_decoder.cma))
 (plugins (byte decoder/theora_decoder.cma))
 (requires ogg.decoder theora)
 (main_module_name Theora_decoder)
 (modes byte)
 (modules
  (singleton
   (obj_name theora_decoder)
   (visibility public)
   (source
    (path Theora_decoder)
    (intf (path decoder/theora_decoder.mli))
    (impl (path decoder/theora_decoder.ml))))))
