update upload time
[cl-fftw3.git] / cl-fftw3.asd
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          cl-fftw3.asd
6 ;;;; Purpose:       ASDF system definition for FFTW3 package
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Jan 2009
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of FFTW3, is Copyright (c) 2009 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; FFTW3 users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (in-package #:cl-user)
20 (defpackage #:fftw3-system (:use #:asdf #:cl))
21 (in-package #:fftw3-system)
22
23 (defsystem cl-fftw3
24     :name "fftw3"
25     :author "Kevin M. Rosenberg <kevin@rosenberg.net>"
26     :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
27     :licence "LLGPL"
28     :depends-on (:kmrcl :cffi)
29     :components
30     ((:file "package")
31      (:file "specials" :depends-on ("package"))
32      (:file "common" :depends-on ("specials"))
33      (:file "ffi" :depends-on ("common"))
34      (:file "transform" :depends-on ("ffi"))
35      (:file "wisdom" :depends-on ("ffi"))))
36
37 (defmethod perform ((o test-op) (c (eql (find-system 'cl-fftw3))))
38   (operate 'load-op 'cl-fftw3-tests)
39   (operate 'test-op 'cl-fftw3-tests :force t))