You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
628 B
23 lines
628 B
(asdf:defsystem #:freebsd-ffi |
|
:description "A small, but growing collection of syscall and base install library FFI wrappers for FreeBSD." |
|
:author "Michael Fiano <mail@mfiano.net>" |
|
:license "BSD2" |
|
:homepage "https://git.mfiano.net/mfiano/freebsd-ffi" |
|
:version "0.1.0" |
|
:encoding :utf-8 |
|
:depends-on |
|
(#:cffi |
|
#:mfiano-utils) |
|
:pathname "src" |
|
:serial t |
|
:components |
|
((:file "package") |
|
(:file "ffi-libraries") |
|
(:file "ffi-variables") |
|
(:file "ffi-enums") |
|
(:file "ffi-structures") |
|
(:file "ffi-functions") |
|
(:file "utilities") |
|
(:file "conditions") |
|
(:file "wrappers") |
|
(:file "macros")))
|
|
|