Skip to content

Commit

Permalink
added the asd file and packages def. swig'ed jack cffi, also.
Browse files Browse the repository at this point in the history
  • Loading branch information
ichiban committed Sep 4, 2010
0 parents commit 75374b7
Show file tree
Hide file tree
Showing 7 changed files with 412 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
*.fasl
*~
\#*#
15 changes: 15 additions & 0 deletions cl-jack.asd
@@ -0,0 +1,15 @@
(in-package :cl-user)

(defpackage :cl-jack-asd
(:use :cl :asdf))

(in-package :cl-jack-asd)

(defsystem :cl-jack
:description "JACK Audio Connection Kit Wrapper."
:version "0.1"
:author "ICHIBANGASE Yutaka <yichiban@gmail.com>"
:depends-on (:cffi)
:components ((:file "packages")
(:file "jack" :depends-on ("packages"))
(:file "core" :depends-on ("packages" "jack"))))
1 change: 1 addition & 0 deletions core.lisp
@@ -0,0 +1 @@
(in-package :cl-jack)
12 changes: 12 additions & 0 deletions jack.i
@@ -0,0 +1,12 @@
%module jack

%feature("intern_function","1");

%insert("lisphead")
%{
(in-package :cl-jack)

(load-foreign-library "/Library/Frameworks/Jackmp.framework/Jackmp")
%}

%include "/Library/Frameworks/Jackmp.framework/Headers/jack.h"

0 comments on commit 75374b7

Please sign in to comment.