X-Git-Url: http://git.kpe.io/?p=pubmed.git;a=blobdiff_plain;f=pubmed.asd;fp=pubmed.asd;h=0000000000000000000000000000000000000000;hp=b794be819352fd43f702e7041db5595ff798745d;hb=cbb63ee2a1ead34ef393ed47eed6d1a0d6e6bd94;hpb=8fbe5b9885498e0aa375061f83c0ea7e0c42c719 diff --git a/pubmed.asd b/pubmed.asd deleted file mode 100644 index b794be8..0000000 --- a/pubmed.asd +++ /dev/null @@ -1,43 +0,0 @@ -;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- -;;;; ************************************************************************* -;;;; FILE IDENTIFICATION -;;;; -;;;; Name: pubmed.asd -;;;; Purpose: ASDF definition file for Pubmed -;;;; Programmer: Kevin M. Rosenberg -;;;; Date Started: Sep 2002 -;;;; -;;;; $Id$ -;;;; -;;;; This file, part of cl-pubmed, is Copyright (c) 2002 by Kevin M. Rosenberg -;;;; -;;;; cl-pubmed users are granted the rights to distribute and use this software -;;;; as governed by the terms of the GNU Lesser General Public License -;;;; (http://www.gnu.org/licenses/lgpl.html) -;;;; ************************************************************************* - -(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 -(defsystem pubmed - :name "cl-pubmed" - :author "Kevin M. Rosenberg " - :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 "package") - (:file "pubmed-src" :depends-on ("package"))) - - :depends-on (:kmrcl #-allegro :aserve)) - - -