root/trunk/thirdparty/asdf-system-connections/asdf-system-connections.asd

Revision 2190, 0.7 kB (checked in by hhubner, 1 year ago)

add more thirdparty libs

Line 
1 ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
2
3 (defpackage #:asdf-system-connections (:use #:cl #:asdf))
4 (in-package #:asdf-system-connections)
5
6 (defsystem asdf-system-connections
7   :version "0.8.3"
8   :author "Gary Warren King <gwking@metabang.com>"
9   :maintainer "Gary Warren King <gwking@metabang.com>"
10   :licence "MIT Style License"
11   :description "Allows for ASDF system to be connected so that auto-loading may occur."
12   :components
13   ((:module
14     "dev"
15     :components ((:file "asdf-system-connections")))
16    
17    (:module
18     "website"
19     :components ((:module
20                   "source"
21                   :components ((:static-file "index.lml")))))))
22
23
24
25
26
27
28
Note: See TracBrowser for help on using the browser.