-
Notifications
You must be signed in to change notification settings - Fork 3
/
cl-diskspace.asd
35 lines (34 loc) · 1.17 KB
/
cl-diskspace.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
;;;; cl-diskspace.asd
(asdf:defsystem "cl-diskspace"
:name "diskspace"
:description "List disks, get disk total/free/usable space information."
:version "0.3.1"
:author "Muyinliu Xing <[email protected]>"
:license "ISC"
:defsystem-depends-on ("cffi-grovel")
:depends-on ("cffi"
#+(or bsd freebsd linux)
"cl-ppcre"
"uiop")
:serial t
:components
((:module "src"
:serial t
:components
((:file "packages")
(:file "utils")
#+(or bsd freebsd linux)
(:module "unix"
:serial t
:components
((:cffi-grovel-file "grovel-statvfs")
(:file "cl-diskspace-list-all-disks-with-df")
(:file "cl-diskspace-statvfs")))
#+win32
(:module "win32"
:serial t
:components
((:file "cl-diskspace-load-foreign-library")
(:file "cl-diskspace-get-logical-drives")
(:file "cl-diskspace-get-disk-free-space")))
(:file "common")))))