2017-12-19 18:24:40 +01:00
|
|
|
#|
|
2017-12-20 21:42:32 +01:00
|
|
|
This file is part of Gemma.
|
2017-12-19 18:24:40 +01:00
|
|
|
|
2017-12-20 21:42:32 +01:00
|
|
|
Gemma 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.
|
|
|
|
|
|
|
|
Copyright (c) 2017 Vincent Ambo
|
2017-12-19 18:24:40 +01:00
|
|
|
|#
|
|
|
|
|
2018-01-03 17:10:07 +01:00
|
|
|
(require 'sb-posix)
|
|
|
|
|
2017-12-19 18:24:40 +01:00
|
|
|
(defsystem "gemma"
|
|
|
|
:version "0.1.0"
|
|
|
|
:author "Vincent Ambo"
|
|
|
|
:license "GPLv3"
|
2017-12-21 01:21:11 +01:00
|
|
|
:depends-on (local-time
|
|
|
|
hunchentoot
|
|
|
|
cl-json
|
|
|
|
cl-prevalence)
|
2017-12-19 18:24:40 +01:00
|
|
|
:components ((:module "src"
|
|
|
|
:components
|
|
|
|
((:file "gemma"))))
|
2017-12-26 13:48:43 +01:00
|
|
|
:build-operation program-op
|
2018-01-03 17:10:07 +01:00
|
|
|
:build-pathname #.(or (pathname (sb-posix:getenv "GEMMA_BIN_TARGET"))
|
|
|
|
"gemma")
|
2017-12-26 13:48:43 +01:00
|
|
|
:entry-point "gemma::entrypoint"
|
2017-12-19 18:24:40 +01:00
|
|
|
:description "Gemma is a household task management system"
|
|
|
|
:long-description
|
|
|
|
#.(read-file-string
|
|
|
|
(subpathname *load-pathname* "README.markdown"))
|
|
|
|
:in-order-to ((test-op (test-op "gemma-test"))))
|