X-Git-Url: http://git.kpe.io/?p=pubmed.git;a=blobdiff_plain;f=entrez.asd;fp=entrez.asd;h=727617a8b4e5805834f3721bc01705c47ed414e9;hp=0000000000000000000000000000000000000000;hb=5ce187bd43a9280f16a315121967f39b9d2d1e10;hpb=3163cad3295c4353f62c0fb0b94a76031369aa82 diff --git a/entrez.asd b/entrez.asd new file mode 100644 index 0000000..727617a --- /dev/null +++ b/entrez.asd @@ -0,0 +1,36 @@ +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: entrez.asd +;;;; Purpose: ASDF definition file for Entrez +;;;; Programmer: Kevin M. Rosenberg +;;;; Date Started: Sep 2002 +;;;; +;;;; This file, part of cl-entrez, is Copyright (c) 2002-2013 by Kevin M. Rosenberg +;;;; +;;;; cl-entrez 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 #:entrez-system (:use #:asdf #:cl)) +(in-package #:entrez-system) + +#+allegro (require :aserve) + +;; only define system on implementations that aserve is available +(defsystem entrez + :name "cl-entrez" + :author "Kevin M. Rosenberg " + :version "2.1" + :maintainer "Kevin M. Rosenberg " + :licence "GNU Lesser General Public License" + :description "Library for querying the Entrez medical literature database" + :long-description "This library has functions for querying the Entrez medical literature database and parsing the XML results into Common Lisp objects." + + :components ((:file "package") + (:file "entrez" :depends-on ("package"))) + + :depends-on (:kmrcl #-allegro :aserve))