27 lines
452 B
Racket
27 lines
452 B
Racket
#lang info
|
|
|
|
(define collection 'multi)
|
|
|
|
(define version "0.1.0")
|
|
|
|
(define pkg-desc
|
|
"native libraries for \"racket-audio\" on \"x86_64-linux\"")
|
|
|
|
(define pkg-authors
|
|
'(hans))
|
|
|
|
(define license
|
|
'(Apache-2.0 OR MIT))
|
|
|
|
(define install-platform
|
|
"x86_64-linux")
|
|
|
|
;; Add every native library shipped in this branch, including runtime
|
|
;; dependencies required by the primary audio libraries.
|
|
(define copy-foreign-libs
|
|
'())
|
|
|
|
(define deps
|
|
'("base"))
|
|
|