Add aarch64-macosx native package
This commit is contained in:
@@ -0,0 +1,15 @@
|
|||||||
|
# racket-audio-aarch64-macosx
|
||||||
|
|
||||||
|
Native libraries for `racket-audio` on macOS Apple Silicon.
|
||||||
|
|
||||||
|
Put the native files directly in the root of this branch, next to `info.rkt`.
|
||||||
|
|
||||||
|
Expected file type:
|
||||||
|
|
||||||
|
*.dylib
|
||||||
|
|
||||||
|
List every shipped native file in `copy-foreign-libs` in `info.rkt`.
|
||||||
|
|
||||||
|
Racket Package Index source:
|
||||||
|
|
||||||
|
<git-url>#aarch64-macosx
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
#lang info
|
||||||
|
|
||||||
|
(define collection 'multi)
|
||||||
|
|
||||||
|
(define version "0.1.0")
|
||||||
|
|
||||||
|
(define pkg-desc
|
||||||
|
"native libraries for \"racket-audio\" on \"aarch64-macosx\"")
|
||||||
|
|
||||||
|
(define pkg-authors
|
||||||
|
'(hans))
|
||||||
|
|
||||||
|
(define license
|
||||||
|
'(Apache-2.0 OR MIT))
|
||||||
|
|
||||||
|
(define install-platform
|
||||||
|
"aarch64-macosx")
|
||||||
|
|
||||||
|
;; Add every native library shipped in this branch, including runtime
|
||||||
|
;; dependencies required by the primary audio libraries.
|
||||||
|
(define copy-foreign-libs
|
||||||
|
'())
|
||||||
|
|
||||||
|
(define deps
|
||||||
|
'("base"))
|
||||||
Reference in New Issue
Block a user