-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathernestine.asd
59 lines (53 loc) · 2.42 KB
/
ernestine.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
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name: ernestine.asd
;;;; Purpose: ASDF definition for ernestine
;;;; Programmer: Nicolas Lamirault <nicolas.lamirault@gmail.com>
;;;;
;;;; This file, part of ernestine, is Copyright (c) 2007 by Nicolas Lamirault
;;;;
;;;; ernestine users are granted the rights to distribute and use this software
;;;; as governed by the terms of the Lisp Lesser GNU Public License
;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
;;;;
;;;; *************************************************************************
(in-package :asdf)
(defsystem ernestine
:name "ernestine"
:author "Nicolas Lamirault <nicolas.lamirault@gmail.com>"
:maintainer "Nicolas Lamirault <nicolas.lamirault@gmail.com>"
:version "0.4"
:licence "Lisp Lesser GNU General Public License"
:description "Music Organizer"
:long-description "Ernestine is a music organizer. It consists
of a database backend which organizes music by artists, and albums.
Therefore, you can launch differents frontend : web, curses, ..."
:depends-on (:split-sequence
:cl-prevalence
:cl-ppcre
:drakma)
:components
((:module :lib
:components
((:file "covers")))
(:module :src
:depends-on (:lib)
:components
((:module :backend
:components
((:file "package")
(:file "specials" :depends-on ("package"))
(:file "errors" :depends-on ("package"))
(:file "obj" :depends-on ("specials"))
(:file "api" :depends-on ("specials"))
(:file "prevalence" :depends-on ("api" "obj" "errors"))
(:file "common" :depends-on ("prevalence"))))
(:module :tools
:components ((:file "package")
(:file "specials" :depends-on ("package"))
(:file "music" :depends-on ("specials"))
(:file "io" :depends-on ("music"))
(:file "misc" :depends-on ("specials")))
:depends-on (:backend))))))