r2387: *** empty log message ***
[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 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; $Id: uffi.asd,v 1.5 2002/08/23 19:29:06 kevin Exp $
11 ;;;;
12 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; UFFI 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 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
20 (in-package :asdf)
21
22 ;; For use with non-Common Lisp Controller installations
23 #-common-lisp-controller
24 (let ((path (make-pathname :name "set-logical" :type "cl"
25                                       :defaults *load-truename*)))
26   (when (probe-file path)
27     (load path)
28     (set-logical-host-for-pathname 
29      "uffi" 
30      (make-pathname :host (pathname-host *load-truename*)
31                     :device (pathname-device *load-truename*)
32                     :directory (pathname-directory *load-truename*)))))
33
34 (defconstant +uffi-logical-host+
35   #+common-lisp-controller "cl-library"
36   #-common-lisp-controller "uffi"
37   "Logical hostname for loading system")
38
39 (defclass uffi-cl-source-file (cl-source-file) ())
40 (defmethod source-file-type ((c uffi-cl-source-file) (s module)) 
41   "cl")
42
43 (defsystem uffi
44   :name "cl-uffi"
45   :author "Kevin M. Rosenberg <kmr@debian.org"
46   :version "0.6.1"
47   :maintainer "Kevin M. Rosenberg <kmr@debian.org"
48   :licence "Lessor Lisp General Public License"
49   :description "Universal Foreign Function Library for Common Lisp"
50   :long-description "UFFI provides a universal foreign function interface (FFI) for Common Lisp. UFFI supports CMUCL, Lispworks, and AllegroCL."
51   
52   :default-component-class uffi-cl-source-file
53   :pathname 
54   #-mcl #.(format nil "~A:uffi;" +uffi-logical-host+)
55   #+mcl  #.(format nil "~A:uffi;mcl;" +uffi-logical-host+)
56   :perform (load-op :after (op uffi)
57                     (pushnew :uffi cl:*features*))
58   :components 
59   ((:file "package")
60    (:file "primitives" :depends-on ("package"))
61    (:file "strings" :depends-on ("primitives"))
62    (:file "objects" :depends-on ("primitives"))
63    (:file "aggregates" :depends-on ("primitives"))
64    (:file "functions" :depends-on ("primitives"))
65    (:file "libraries" :depends-on ("package")))
66   )
67