-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbtrfs.asd
34 lines (28 loc) · 983 Bytes
/
btrfs.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
;;; btrfs.asd --- BTRFS SYSTEMS
;; BTRFS for lisp.
;;; Code:
(eval-when (:compile-toplevel :load-toplevel :execute)
(require :sb-grovel))
(defpackage :btrfs.sys
(:use :cl :asdf :sb-grovel :sb-alien))
(in-package :btrfs.sys)
(defsystem "btrfs"
:version "0.1.0"
:license (:file "LICENSE")
:maintainer "ellis <ellis@rwest.io>"
:homepage "https://nas-t.net"
:bug-tracker "https://lab.rwest.io/comp/startup/nas-t/issues"
;; :depends-on (:macs :sxp)
:in-order-to ((test-op (test-op "btrfs/tests")))
:components ((:module "src/fs/btrfs"
:components
((:file "btrfs")))))
(defsystem "btrfs/tests"
:version "0.1.0"
:license (:file "LICENSE")
:maintainer "ellis <ellis@rwest.io>"
:homepage "https://nas-t.net"
:bug-tracker "https://lab.rwest.io/comp/startup/nas-t/issues"
:depends-on (:btrfs :sb-rt)
:components ((:file "src/fs/btrfs/tests"))
:perform (test-op (op c) (uiop:symbol-call '#:btrfs.tests '#:run-all-tests)))