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.
18 lines
482 B
18 lines
482 B
(asdf:defsystem #:flac-metadata |
|
:description "A utility for reading metadata embedded in FLAC audio files." |
|
:author "Michael Fiano <mail@mfiano.net>" |
|
:license "MIT" |
|
:homepage "https://git.mfiano.net/mfiano/flac-metadata" |
|
:encoding :utf-8 |
|
:depends-on |
|
(#:binary-parser |
|
#:mfiano-utils) |
|
:pathname "src" |
|
:serial t |
|
:components |
|
((:file "package") |
|
(:file "flac") |
|
(:file "datastream") |
|
(:file "metadata") |
|
(:file "metadata-types") |
|
(:file "dump-data")))
|
|
|