;; Physical dimension system definition ;; Liam Healy 2012-02-20 10:14:49EST physical-dimension.asd ;; Time-stamp: <2014-01-05 15:05:30EST date-time.asd> ;; Copyright 2014 Liam M. Healy ;; Distributed under the terms of the GNU General Public License ;; ;; 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 . (in-package :cl-user) (asdf:defsystem #:date-time :name "Date and time" :description "A library to provide computations with date and time." :author "Liam M. Healy" :license "GPL v3" :serial t :defsystem-depends-on (#:asdf-system-connections) :depends-on (#:physical-dimension) :components ((:module date-time :serial t :components ((:file "iso8601") (:file "dtspec") (:file "time-interval") (:file "timepoint") (:file "relative-time") (:file "read-time") (:file "formats") (:file "convert-timescale") (:file "dtmath"))))) (asdf:defsystem-connection #:remote-phys-dim-data :serial t :requires (#:date-time #:drakma) :components ((:module date-time :components ((:file "eop")))))