(lang dune 2.9)
(name theora)
(version 0.4.0)
(library
 (name theora)
 (kind normal)
 (synopsis "OCaml bindings for libtheora")
 (archives (byte theora.cma) (native theora.cmxa))
 (plugins (byte theora.cma) (native theora.cmxs))
 (foreign_objects theora_stubs.o)
 (foreign_archives libtheora_stubs.a)
 (native_archives theora.a)
 (requires ogg)
 (main_module_name Theora)
 (modes byte native)
 (modules
  (singleton
   (name Theora)
   (obj_name theora)
   (visibility public)
   (impl)
   (intf))))
(library
 (name theora.decoder)
 (kind normal)
 (synopsis "Theora decoder for the ogg-decoder library")
 (archives
  (byte decoder/theora_decoder.cma)
  (native decoder/theora_decoder.cmxa))
 (plugins
  (byte decoder/theora_decoder.cma)
  (native decoder/theora_decoder.cmxs))
 (native_archives decoder/theora_decoder.a)
 (requires ogg.decoder theora)
 (main_module_name Theora_decoder)
 (modes byte native)
 (modules
  (singleton
   (name Theora_decoder)
   (obj_name theora_decoder)
   (visibility public)
   (impl)
   (intf))))
