File: cl-statistics.asd

package info (click to toggle)
cl-statistics 20050224-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 164 kB
  • ctags: 102
  • sloc: lisp: 1,086; makefile: 43; sh: 12
file content (30 lines) | stat: -rw-r--r-- 1,089 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name:          cl-statistics.system
;;;; Purpose:       ASDF definition for cl-statistics package
;;;; Programmer:    Kevin M. Rosenberg
;;;; Date Started:  06 Sep 2002
;;;;
;;;; Users are granted the rights to distribute and use this software
;;;; as governed by the terms of the GNU Public License
;;;; *************************************************************************

(in-package :asdf)

(defsystem :cl-statistics
  :name "cl-statistics"
  :author "Larry Hunter <larry.hunter@uchsc.edu>"
  :version "1.0.0"
  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
  :licence "GNU General Public License"
  :description "Statistics package for Common Lisp"
  :long-description "cl-statistics provides numerous statistical functions for use in Common Lisp programs."
  
  :perform (load-op :after (op cl-statistics)
		    (pushnew :cl-statistics cl:*features*))
  :components 
  ((:file "cl-statistics"))
  )