1234567891011121314151617181920212223 |
- ;;;; This software is Copyright 2020 (c) cage
- ;;;; cage grants you the rights to distribute and use this software as
- ;;;; governed by the terms of the Lisp Lesser GNU Public License
- ;;;; (http://opensource.franz.com/preamble.html), known as the LLGPL
- (defsystem :cl-mount-info
- :version "0.0.1"
- :author "cage"
- :encoding :utf-8
- :maintainer "cage"
- :bug-tracker "https://notabug.org/cage/cl-mount-info/issues"
- :license "LLGPLv3 or later"
- :description "Get information about mounted filesystems on GNU/linux."
- :pathname "src"
- :serial t
- :depends-on (:alexandria
- :cffi
- :cl-ppcre)
- :components ((:file "package")
- (:file "cffi")
- (:file "conditions")
- (:file "api")))
|