r11022: revert incorrect stuff from clisp testing
[uffi.git] / uffi.asd
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          uffi.asd
6 ;;;; Purpose:       ASDF system definition file for UFFI package
7 ;;;; Author:        Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of UFFI, is Copyright (c) 2002-2005 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; *************************************************************************
15
16 (defpackage #:uffi-system (:use #:asdf #:cl))
17 (in-package #:uffi-system)
18
19 #+(or allegro lispworks cmu openmcl digitool cormanlisp sbcl scl)
20 (defsystem uffi
21   :name "uffi"
22   :author "Kevin Rosenberg <kevin@rosenberg.net>"
23   :version "1.2.x"
24   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
25   :licence "Lessor Lisp General Public License"
26   :description "Universal Foreign Function Library for Common Lisp"
27   :long-description "UFFI provides a universal foreign function interface (FFI) for Common Lisp. UFFI supports CMUCL, Lispworks, and AllegroCL."
28
29   :components
30   ((:module :src
31             :components
32             ((:file "package")
33              (:file "primitives" :depends-on ("package"))
34              #+(or openmcl digitool) (:file "readmacros-mcl" :depends-on ("package"))
35              (:file "objects" :depends-on ("primitives"))
36              (:file "aggregates" :depends-on ("primitives"))
37              (:file "strings" :depends-on ("primitives" "functions" "aggregates" "objects"))
38              (:file "functions" :depends-on ("primitives"))
39              (:file "libraries" :depends-on ("package"))
40              (:file "os" :depends-on ("package"))))
41    ))
42
43 #+(or allegro lispworks cmu openmcl digitool cormanlisp sbcl scl)
44 (defmethod perform ((o test-op) (c (eql (find-system 'uffi))))
45   (oos 'load-op 'uffi-tests)
46   (oos 'test-op 'uffi-tests :force t))
47
48