commit 947b79e15322fdf74df6642351442176473531a1 Author: Hans Dijkema Date: Tue Aug 11 09:35:11 2026 +0000 Add x86_64-linux native package diff --git a/README.md b/README.md new file mode 100644 index 0000000..e3e74b9 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# racket-audio-x86_64-linux + +Native libraries for `racket-audio` on Linux x86_64. + +Put the native files directly in the root of this branch, next to `info.rkt`. + +Expected file type: + + *.so / *.so.* + +List every shipped native file in `copy-foreign-libs` in `info.rkt`. + +Racket Package Index source: + + #x86_64-linux diff --git a/info.rkt b/info.rkt new file mode 100644 index 0000000..5df6cff --- /dev/null +++ b/info.rkt @@ -0,0 +1,25 @@ +#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"))