Update domain name to kpe.io
[cl-photo.git] / cl-photo.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          cl-photo.asd
6 ;;;; Purpose:       ASDF definition file for Lisp Markup Language Version 2
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  April 2005
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of cl-photo, is Copyright (c) 2005 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; cl-photo users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the GNU General Public License v2
16 ;;;; (http://www.gnu.org/licenses/gpl.html)
17 ;;;; *************************************************************************
18
19 (in-package #:cl-user)
20 (defpackage #:cl-photo-system (:use #:asdf #:cl))
21 (in-package #:cl-photo-system)
22
23 (defsystem cl-photo
24   :name "cl-photo"
25   :author "Kevin M. Rosenberg <kevin@rosenberg.net>"
26   :version "1.0"
27   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
28   :licence "GNU General Public License"
29   :description "Lisp Markup Language"
30   :long-description "cl-photo calculates photography values."
31
32   :depends-on (kmrcl)
33   :components
34   ((:file "package")
35    (:file "convert" :depends-on ("package"))
36    (:file "cameras" :depends-on ("convert"))
37    (:file "fov" :depends-on ("cameras"))
38    (:file "dof" :depends-on ("fov"))
39    (:file "tables" :depends-on ("dof" "fov"))))
40
41 (defmethod perform ((o test-op) (c (eql (find-system 'cl-photo))))
42   (operate 'load-op 'cl-photo-tests)
43   (operate 'test-op 'cl-photo-tests))