-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* build.lisp: Add build recipe for the project. * dump.asd: Define dump as a system package.
- Loading branch information
1 parent
9a0c42b
commit 0784db1
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
(require :asdf) | ||
|
||
;; Load genenetwork.asd from the current directory. | ||
(asdf:load-asd (merge-pathnames "dump.asd" | ||
(directory-namestring *load-truename*))) | ||
|
||
(asdf:make :dump) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
(in-package cl-user) | ||
|
||
(asdf:defsystem #:dump | ||
:description "GeneNetwork matrix database tool" | ||
:version "0.1.0" | ||
:author "The GeneNetwork team" | ||
:licence "GNU General Public License version 3 or later" | ||
:depends-on (:alexandria | ||
:arrows | ||
:cl-conspack | ||
:cl-dbi :trivia | ||
:cl-fad | ||
:cl-json | ||
:ironclad | ||
:listopia | ||
:lmdb | ||
:str | ||
:trivial-utf-8) | ||
:components ((:file "dump")) | ||
:build-operation "program-op" | ||
:build-pathname "dump" | ||
:entry-point "dump:main") | ||
|