-
Notifications
You must be signed in to change notification settings - Fork 10
/
lake.asd
34 lines (32 loc) · 1.12 KB
/
lake.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#|
This file is a part of lake project.
Copyright (c) 2015 Rudolph Miller ([email protected])
|#
(in-package :cl-user)
(defpackage lake-asd
(:use :cl :asdf))
(in-package :lake-asd)
(defsystem "lake"
:version "0.1.3"
:author "Rudolph Miller and Masayuki Takagi"
:license "MIT"
:homepage "https://github.com/takagi/lake"
:class :package-inferred-system
:pathname "src"
:depends-on ("cl-syntax-interpol"
"lake/main"
"lake/user")
:description "Lake is a GNU make like build utility in Common Lisp."
:long-description
#.(with-open-file (stream (merge-pathnames
#p"README.md"
(or *load-pathname* *compile-file-pathname*))
:if-does-not-exist nil
:direction :input)
(when stream
(let ((seq (make-array (file-length stream)
:element-type 'character
:fill-pointer t)))
(setf (fill-pointer seq) (read-sequence seq stream))
seq)))
:in-order-to ((test-op (load-op lake-test))))