Indent GeoJSON user-point data when saved in a file
[phoros.git] / phoros.asd
blob3f8082c3696fbd308c6701b29787fb85395e2352
1 (defsystem :phoros
3   :description                 ;goes with --version --verbose=1 output
4   "PHOROS (Photogrammetric Road Survey)"
6   :author "Bert Burgemeister <trebbu@googlemail.com>"
8   :maintainer "Bert Burgemeister <trebbu@googlemail.com>"
10   :long-description                     ;goes with --help output
11   "Phoros is a tool for photogrammetric road survey.  It stores data
12 in a PostgreSQL database and then makes it available over a web
13 interface.                              http://phoros.boundp.org"
15   :version                              ;goes with --version output
16   ;; :version is MAJOR.MINOR.REVISION where
17   ;; - different MAJOR means data incompatibility,
18   ;; - different MINOR means changed feature set,
19   ;; - different REVISION means any other change.
20   ;; 
21   ;; There should be a corresponding git tag which marks the point this
22   ;; version number becomes official.
24   "13.7.0"
26   :licence                              ;goes with --licence output
27   "Copyright (C) 2010, 2011, 2012 Bert Burgemeister
29 This program is free software; you can redistribute it and/or modify
30 it under the terms of the GNU General Public License as published by
31 the Free Software Foundation; either version 2 of the License, or (at
32 your option) any later version.
34 This program is distributed in the hope that it will be useful, but
35 WITHOUT ANY WARRANTY; without even the implied warranty of
36 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
37 General Public License for more details.
39 You should have received a copy of the GNU General Public License along
40 with this program; if not, write to the Free Software Foundation, Inc.,
41 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA."
43   :serial t
45   :components ((:file "package")
46                (:file "util")
47                (:file "proj4-sh")
48                (:file "log")
49                (:file "photogrammetry")
50                (:file "indent-json")
51                (:file "phoros")
52                (:file "css")
53                (:file "cli")
54                (:file "phoros-js")
55                (:file "blurb")
56                (:file "db-tables")
57                (:file "stuff-db")
58                (:file "pictures-file"))
60   :depends-on (:phoml
61                :trivial-shell           ;for proj4-sh
62                :cl-ppcre
63                :hunchentoot
64                :cl-who
65                :parenscript
66                :cl-json
67                :postmodern
68                :simple-date
69                :zpng
70                :drakma
71                :com.dvlsoft.clon
72                :cl-utilities
73                :parse-number
74                :named-readtables
75                :cl-log
76                :trivial-backtrace))