Skip to content
poiu.asd 1.31 KiB
Newer Older
;;; -*- mode: lisp -*-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;                                                                  ;;;
;;; Free Software, same MIT-style license as ASDF. See poiu.lisp.    ;;;
;;;                                                                  ;;;
;;; Copyright (c) 2001 Daniel Barlow                                 ;;;
;;; Copyright (c) 2008 ITA Software                                  ;;;
;;; Copyright (c) 2011 Google, Inc.                                  ;;;
;;;                                                                  ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

  :author ("Daniel Barlow" "Andreas Fuchs" "Francois-Rene Rideau")
  :maintainer "Francois-Rene Rideau"
  :licence "MIT"
  :description "POIU"
  :long-description "Parallel Operator on Independent Units
POIU is a variant of ASDF that may operate on your systems in parallel.
POIU will notably compile each Lisp file in its own forked process,
Francois-Rene Rideau's avatar
Francois-Rene Rideau committed
in parallel with other operations (compilation or loading).
However, it will load FASLs serially as they become available."
Francois-Rene Rideau's avatar
Francois-Rene Rideau committed
  :version (:read-file-form "poiu.lisp" :at (1 2 2))
  :depends-on ((:version :asdf "2.26.136")) ; for :at specifier above
  :components ((:file "poiu")))