r5062: return from san diego
[pubmed.git] / pubmed.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          pubmed.asd
6 ;;;; Purpose:       ASDF definition file for Pubmed
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Sep 2002
9 ;;;;
10 ;;;; $Id: pubmed.asd,v 1.4 2003/05/06 16:24:49 kevin Exp $
11 ;;;;
12 ;;;; This file, part of cl-pubmed, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; cl-pubmed users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the GNU Lesser General Public License 
16 ;;;; (http://www.gnu.org/licenses/lgpl.html)
17 ;;;; *************************************************************************
18
19 (in-package :asdf)
20
21 #+(and allegro common-lisp-controller) (c-l-c::clc-require :aserve)
22 #+(and allegro (not common-lisp-controller)) (require :aserve)
23
24 ;; only define system on implementations that aserve is available
25 #+(or allegro lispworks cmucl mcl openmcl scl clisp)
26 (defsystem :pubmed
27   :name "cl-pubmed"
28   :author "Kevin M. Rosenberg <kevin@rosenberg.net>"
29   :version "1.0"
30   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
31   :licence "GNU Lesser General Public License"
32   :description "Library for querying the PubMed medical literature database"
33   :long-description "This library has functions for querying the PubMed medical literature database and parsing the XML results into Common Lisp objects."
34   
35   :components ((:file "src"))
36   
37   :depends-on (:kmrcl #-allegro :aserve))
38
39
40