|
Revision 2636, 459 bytes
(checked in by hans, 10 months ago)
|
add cl-pdf for pixel->pdf converter
|
| Line | |
|---|
| 1 |
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- |
|---|
| 2 |
|
|---|
| 3 |
(in-package asdf) |
|---|
| 4 |
|
|---|
| 5 |
(defsystem :cl-pdf-parser |
|---|
| 6 |
:name "cl-pdf-parser" |
|---|
| 7 |
:author "Marc Battyani <marc.battyani@fractalconcept.com>" |
|---|
| 8 |
:maintainer "Marc Battyani <marc.battyani@fractalconcept.com>" |
|---|
| 9 |
:description "PDF parser" |
|---|
| 10 |
:long-description "PDF parser" |
|---|
| 11 |
:components ((:file "pdf-parser" :depends-on ()) |
|---|
| 12 |
(:file "pdf-template" :depends-on ("pdf-parser"))) |
|---|
| 13 |
:depends-on (:cl-pdf)) |
|---|