Update URL for package
[pubmed.git] / entrez.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          entrez.asd
6 ;;;; Purpose:       ASDF definition file for Entrez
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Sep 2002
9 ;;;;
10 ;;;; This file, part of cl-entrez, is Copyright (c) 2002-2013 by Kevin M. Rosenberg
11 ;;;;
12 ;;;; cl-entrez users are granted the rights to distribute and use this software
13 ;;;; as governed by the terms of the GNU Lesser General Public License
14 ;;;; (http://www.gnu.org/licenses/lgpl.html)
15 ;;;; *************************************************************************
16
17 (in-package #:cl-user)
18 (defpackage #:entrez-system (:use #:asdf #:cl))
19 (in-package #:entrez-system)
20
21 #+allegro (require :aserve)
22
23 ;; only define system on implementations that aserve is available
24 (defsystem entrez
25   :name "cl-entrez"
26   :author "Kevin M. Rosenberg <kevin@rosenberg.net>"
27   :version "2.1"
28   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
29   :licence "GNU Lesser General Public License"
30   :description "Library for querying the Entrez medical literature database"
31   :long-description "This library has functions for querying the Entrez medical literature database and parsing the XML results into Common Lisp objects."
32
33   :components ((:file "package")
34                (:file "entrez" :depends-on ("package")))
35
36   :depends-on (:kmrcl #-allegro :aserve))