File: cl-pdf-parser.asd

package info (click to toggle)
cl-pdf 166-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,520 kB
  • ctags: 639
  • sloc: lisp: 6,902; makefile: 39
file content (13 lines) | stat: -rw-r--r-- 459 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-

(in-package asdf)

(defsystem :cl-pdf-parser
  :name "cl-pdf-parser"
  :author "Marc Battyani <marc.battyani@fractalconcept.com>"
  :maintainer "Marc Battyani <marc.battyani@fractalconcept.com>"
  :description "PDF parser"
  :long-description "PDF parser"
  :components ((:file "pdf-parser" :depends-on ())
               (:file "pdf-template" :depends-on ("pdf-parser")))
  :depends-on (:cl-pdf))