-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnumrecip.asd
More file actions
26 lines (23 loc) · 769 Bytes
/
numrecip.asd
File metadata and controls
26 lines (23 loc) · 769 Bytes
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
#|
This file is a part of numrecip project.
|#
#|
NUMRECIP.
|#
(in-package :cl-user)
(defpackage numrecip-asd
(:use :cl :asdf))
(in-package :numrecip-asd)
(defsystem numrecip
:version "1.0.0"
:author "Bill Schottstaedt <bil@ccrma.Stanford.EDU>"
:maintainer "Antonio Juan Querol <antonio.querol@cuaqea.com>"
:homepage "https://github.com/anquegi/numrecip"
:bug-tracker "https://github.com/anquegi/numrecip/issues"
:source-control (:git "git@github.com:anquegi/numrecip.git")
:license "TODO"
:components ((:module "src"
:components ((:file "fft")
(:file "numrecip"))))
:description "Common Lisp library of mathematical functions."
:in-order-to ((test-op (test-op numrecip-test))))