~ok2/cl-escape/cl-escape

« back to all changes in this revision

Viewing changes to cl-escape.asd

  • Committer: Stefan Mandl
  • Date: 2013-03-21 22:52:42 UTC
  • Revision ID: mail@stefan-mandl.de-20130321225242-90i1adz7nja1mqmi
initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
 
2
;;; --------------------------------------------------------------------
 
3
;;;
 
4
;;; Copyright (c) 2013, Stefan Mandl. All rights reserved.
 
5
;;;
 
6
;;; Redistribution and use in source and binary forms, with or without
 
7
;;; modification, are permitted provided that the following conditions
 
8
;;; are met:
 
9
 
 
10
;;;   * Redistributions of source code must retain the above copyright
 
11
;;;     notice, this list of conditions and the following disclaimer.
 
12
 
 
13
;;;   * Redistributions in binary form must reproduce the above
 
14
;;;     copyright notice, this list of conditions and the following
 
15
;;;     disclaimer in the documentation and/or other materials
 
16
;;;     provided with the distribution.
 
17
 
 
18
;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
 
19
;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
20
;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
21
;;; ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
 
22
;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
23
;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 
24
;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
25
;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 
26
;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 
27
;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
28
;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
29
;;; --------------------------------------------------------------------
 
30
 
 
31
 
 
32
(defpackage #:cl-escape-system
 
33
  (:use #:asdf #:common-lisp))
 
34
 
 
35
(in-package #:cl-escape-system)
 
36
 
 
37
(defsystem cl-escape
 
38
  :description "An implementation of Erlang Style ComminucAting ProcEsses for Common Lisp."
 
39
  :version "0.0.1"
 
40
  :author "Stefan Mandl <mail@stefan-mandl.de>"
 
41
  :licence "BSD"
 
42
  :serial t
 
43
  :components
 
44
  ((:module "src"
 
45
            :serial t
 
46
            :components
 
47
            ((:file "package")
 
48
             (:file "utilities")
 
49
             (:file "pattern-matching-from-ON-LISP")
 
50
             (:file "escape")
 
51
             (:file "processes")
 
52
             (:file "examples")
 
53
             )))
 
54
   :depends-on (:bordeaux-threads :com.informatimago.clmisc))
 
55
 
 
56
 
 
57
 
 
58