trivial-ppm.asd @ f1ad2033144e

Add support for ASCII/Binary PPM files
author Steve Losh <steve@stevelosh.com>
date Tue, 28 Nov 2017 20:43:25 -0500
parents de4030a2d5b9
children 1320162a9ed0
(asdf:defsystem :trivial-ppm
  :description
  "Common Lisp support for reading/writing the PPM/PGM/PBM image formats."

  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT/X11"

  :depends-on (:flexi-streams)

  :serial t
  :components ((:module "vendor" :serial t
                :components ((:file "quickutils-package")
                             (:file "quickutils")))
               (:file "package")
               (:module "src" :serial t
                :components
                ((:file "main")))))