git.fiddlerwoaroof.com
Raw Blame History
;;;; alimenta.asd

(asdf:defsystem #:alimenta
  :description "A little library to discover, fetch, parse and generate RSS feeds"
  :author "Fiddlerwoaroof <fiddlerwoaroof@howit.is>"
  :license "MIT"
  :depends-on (#:plump
               #:lquery
               #:should-test
               #:alexandria
               #:anaphora
               #:chronicity
               #:drakma)
  :serial t
  :components ((:file "package")
               (:file "alimenta")  
               (:file "atom")  
               (:file "rss")  
               (:file "fetching")
               (:file "discovery")))


;; vim: set ft=lisp: