File: csound.asd

package info (click to toggle)
csound 1%3A6.08.0~dfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 46,084 kB
  • sloc: ansic: 179,873; cpp: 58,415; python: 11,289; lisp: 4,046; xml: 1,302; objc: 1,198; yacc: 1,197; perl: 635; java: 618; sh: 608; tcl: 341; lex: 209; makefile: 168
file content (18 lines) | stat: -rw-r--r-- 473 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
;;; 
;;; ASDF 3.1 compliant system definition file for Csound.
;;;
;;; Michael Gogins
;;; 11 July 2016
;;;
(require :asdf)
(asdf::defsystem "csound"
  :description "CFFI interface to the Csound C API."
  :long-description "CFFI interface to the Csound C API."
  :version "1.0"
  :author "Michael Gogins <michael.gogins@gmail.com>"
  :licence "LLGPL"
  :serial t ;; the dependencies are linear.
  :depends-on (:cffi)
  :components  
  ((:file "csound")))