forked from fukamachi/cl-locale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcl-locale.asd
45 lines (40 loc) · 1.43 KB
/
cl-locale.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
35
36
37
38
39
40
41
42
43
44
45
#|
This file is a part of CL-Locale package.
URL: http://github.com/arielnetworks/cl-locale
Copyright (c) 2011 Eitarow Fukamachi <[email protected]>
CL-Locale is freely distributable under the LLGPL License.
|#
#|
CL-Locale is a simple i18n library for Common Lisp.
Author: Eitarow Fukamachi ([email protected])
|#
(in-package :cl-user)
(defpackage cl-locale-asd
(:use :cl :asdf))
(in-package :cl-locale-asd)
(defsystem cl-locale
:version "0.1"
:author "Eitarow Fukamachi"
:depends-on (:anaphora
:arnesi
:cl-annot
:cl-syntax
:cl-syntax-annot)
:license "LLGPL"
:components ((:module "src"
:components ((:file "locale" :depends-on ("core" "reader"))
(:file "core")
(:file "reader" :depends-on ("core")))))
:description "Simple i18n library for Common Lisp"
:long-description
#.(with-open-file (stream (merge-pathnames
#p"README.markdown"
(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))))