Disable pipeglade debugging in Fasttrack
[phoros.git] / phoros.asd
bloba5ee2bf8e2c39f8afe042263475671753fbc23e5
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 (http://phoros.boundp.org) is a tool for photogrammetric
12 road survey.  It stores data in a PostgreSQL database and then makes
13 it available over a web interface."
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   "14.2.7"
26   :licence                              ;goes with --licence output
27   "Copyright (C) 2010, 2011, 2012, 2015, 2016, 2017 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 #+build-phoros "package-phoros"
46                       #+build-fasttrack "package-fasttrack")
47                #+build-phoros (:file "util")
48                (:file "proj4-sh")
49                #+build-phoros (:file "imread")
50                #+build-phoros (:file "log")
51                (:file "photogrammetry")
52                #+build-phoros (:file "indent-json")
53                #+build-phoros (:file "phoros")
54                #+build-phoros (:file "css")
55                #+build-phoros (:file "cli")
56                #+build-phoros (:file "phoros-js")
57                #+build-phoros (:file "blurb")
58                #+build-phoros (:file "db-tables")
59                #+build-phoros (:file "stuff-db")
60                #+build-phoros (:file "image-reader")
61                #+build-fasttrack (:file "fasttrack"))
63   :depends-on (:phoml
64                #+build-phoros :swank
65                #+build-phoros :sb-daemon
66                :trivial-shell           ;for proj4-sh
67                #+build-phoros :cl-ppcre
68                #+build-phoros :hunchentoot
69                #+build-phoros :cl-who
70                #+build-phoros :parenscript
71                :cl-json
72                :postmodern
73                #+build-phoros :simple-date
74                :drakma
75                #+build-phoros :net.didierverna.clon
76                :cl-utilities
77                :parse-number
78                #+build-phoros :named-readtables
79                #+build-phoros :cl-log
80                #+build-phoros :trivial-backtrace
81                #+build-fasttrack :lisp-magick-wand
82                #+build-fasttrack :trivial-timeout))