1.0.27.46: Fix build on systems with "src" in the path.
[sbcl/tcr.git] / contrib / asdf-install / asdf-install.asd
blob1795efccfa6697c2cc88de8ae7987bd0a9e325fd
1 ;;; -*-  Lisp -*-
3 (defpackage #:asdf-install-system
4   (:use #:cl #:asdf))
6 (in-package #:asdf-install-system)
8 (defsystem asdf-install
9   :depends-on (sb-posix sb-bsd-sockets)
10   :version "0.2"
11   #+sb-building-contrib :pathname
12   #+sb-building-contrib "SYS:CONTRIB;ASDF-INSTALL;"
13   :components ((:file "defpackage")
14                (:file "installer" :depends-on ("defpackage"))))
16 (defmethod perform :after ((o load-op) (c (eql (find-system :asdf-install))))
17   (provide 'asdf-install))
19 (defmethod perform ((o test-op) (c (eql (find-system :asdf-install))))
20   t)