r5101: Automatic commit for debian_version_2_1_1-1
[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.6 2003/06/12 02:38:39 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 #:cl-user)
20 (defpackage #:pubmed-system (:use #:asdf #:cl))
21 (in-package #:pubmed-system)
22
23
24 #+(and allegro common-lisp-controller) (c-l-c::clc-require :aserve)
25 #+(and allegro (not common-lisp-controller)) (require :aserve)
26
27 ;; only define system on implementations that aserve is available
28 (defsystem pubmed
29   :name "cl-pubmed"
30   :author "Kevin M. Rosenberg <kevin@rosenberg.net>"
31   :version "2.1"
32   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
33   :licence "GNU Lesser General Public License"
34   :description "Library for querying the PubMed medical literature database"
35   :long-description "This library has functions for querying the PubMed medical literature database and parsing the XML results into Common Lisp objects."
36   
37   :components ((:file "package")
38                (:file "pubmed-src" :depends-on ("package")))
39   
40   :depends-on (:kmrcl #-allegro :aserve))
41
42
43