changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/aud/aud.asd

changeset 474: ea3b643a27a3
parent: efc3e9ec02bf
author: Richard Westhaver <ellis@rwest.io>
date: Mon, 24 Jun 2024 20:17:39 -0400
permissions: -rw-r--r--
description: init glib and gstreamer FFI
1 (defsystem :aud
2  :description "High-level Audio API"
3  :depends-on (:cl-ppcre :std :obj :dat :alsa :sndfile :net)
4  :version "0.1.0"
5  :serial t
6  :components ((:file "pkg")
7  (:file "mpd"))
8  :in-order-to ((test-op (test-op "aud/tests"))))
9 
10 (defsystem :aud/tests
11  :depends-on (:rt :aud)
12  :components ((:file "tests"))
13  :perform (test-op (o c) (symbol-call :rt :do-tests :aud)))