(lang dune 2.9)
(name lastfm)
(version 0.3.3)
(library
 (name lastfm)
 (kind normal)
 (synopsis
  "Implementation of the API used by the last.fm to keep count of played songs")
 (archives (byte lastfm.cma) (native lastfm.cmxa))
 (plugins (byte lastfm.cma) (native lastfm.cmxs))
 (native_archives lastfm.a)
 (requires pcre xmlplaylist threads netstring netclient)
 (modes byte native)
 (modules
  (unwrapped
   ((name Lastfm) (obj_name lastfm) (visibility public) (impl))
   ((name Lastfm_constants)
    (obj_name lastfm_constants)
    (visibility public)
    (impl))
   ((name Lastfm_generic)
    (obj_name lastfm_generic)
    (visibility public)
    (impl)
    (intf)))))
