-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfulci.asd
94 lines (89 loc) · 3.17 KB
/
fulci.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
;; fulci: a program to organize your movies collection
;; Copyright (C) 2018 cage
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(defsystem :fulci
:encoding :utf-8
:name "fulci"
:version "0.9.5"
:author "cage"
:maintainer "cage"
:bug-tracker "https://notabug.org/cage/fulci/issues"
:licence "GPLv3"
:description "a program to organize your movies collection"
:pathname "src"
:serial t
:depends-on (:alexandria
:access
:cl-ppcre
:sqlite
:sxql
:cl-lex
:yacc
:parse-number
:cl-syntax
:lquery
:local-time
:osicat
:cl-colors2
:nodgui
:drakma
:log4cl
:clunit2
:cl-i18n
:cl-jpeg
:cl-json
:osicat
:babel
:nodgui
:marshal
:cl-pslib
:cl-pslib-barcode
:cl-csv)
:components ((:file "package")
(:file "config")
(:file "constants")
(:file "conditions")
(:file "misc-utils")
(:file "text-utils")
(:file "net-utils")
(:file "filesystem-utils")
(:file "image-utils")
(:file "db-utils")
(:file "bs-tree")
(:file "rb-tree")
(:file "json-rpc2")
(:file "validation")
(:file "db")
(:file "preferences")
(:file "search-title-expr")
(:file "search-copy-expr")
(:file "import-tsv")
(:file "wikipedia")
(:file "nodgui-utils")
(:file "icons")
(:file "menu-commands")
(:file "manage-movie")
(:file "ps-utils")
(:file "manage-copies")
(:file "search-titles-frame")
(:file "search-copies-frame")
(:file "main-toolbar")
(:file "main-frame")
(:file "main")
(:module tests
:components ((:file "package")
(:file "all-tests")
(:file "test-jsonrpc")
(:file "test-search-expr")))))
;(push :debug-tk *features*)
;(push :print-sql *features*)
;(push :debug-csv *features*)