X-Git-Url: http://git.kpe.io/?p=pubmed.git;a=blobdiff_plain;f=pubmed.asd;h=06f0c9fd1f53e6ed21df6d415e1143fdbf201896;hp=01cbbd41adc0ac198b73a4a6e7e7d5a7e26d44b8;hb=53c9df7bcfe5a22f23531e55672dac868a20225c;hpb=ea796ca151dd84714368e9ceb36c6bed684068b1 diff --git a/pubmed.asd b/pubmed.asd index 01cbbd4..06f0c9f 100644 --- a/pubmed.asd +++ b/pubmed.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Sep 2002 ;;;; -;;;; $Id: pubmed.asd,v 1.4 2003/05/06 16:24:49 kevin Exp $ +;;;; $Id: pubmed.asd,v 1.5 2003/06/06 22:04:05 kevin Exp $ ;;;; ;;;; This file, part of cl-pubmed, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,23 +16,27 @@ ;;;; (http://www.gnu.org/licenses/lgpl.html) ;;;; ************************************************************************* -(in-package :asdf) +(in-package #:cl-user) +(defpackage #:pubmed-system (:use #:asdf #:cl)) +(in-package #:pubmed-system) + #+(and allegro common-lisp-controller) (c-l-c::clc-require :aserve) #+(and allegro (not common-lisp-controller)) (require :aserve) ;; only define system on implementations that aserve is available #+(or allegro lispworks cmucl mcl openmcl scl clisp) -(defsystem :pubmed +(defsystem pubmed :name "cl-pubmed" :author "Kevin M. Rosenberg " - :version "1.0" + :version "2.1" :maintainer "Kevin M. Rosenberg " :licence "GNU Lesser General Public License" :description "Library for querying the PubMed medical literature database" :long-description "This library has functions for querying the PubMed medical literature database and parsing the XML results into Common Lisp objects." - :components ((:file "src")) + :components ((:file "package") + (:file "pubmed-src" :depends-on ("package"))) :depends-on (:kmrcl #-allegro :aserve))