From 312dc379452e7f1252254d8c01730507a964d378 Mon Sep 17 00:00:00 2001 From: Hans Dijkema Date: Tue, 11 Aug 2026 09:35:11 +0000 Subject: [PATCH] Add x86_64-win32 native package --- README.md | 15 +++++++++++++++ info.rkt | 25 +++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 README.md create mode 100644 info.rkt diff --git a/README.md b/README.md new file mode 100644 index 0000000..35ae381 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# racket-audio-x86_64-win32 + +Native libraries for `racket-audio` on Windows x86_64. + +Put the native files directly in the root of this branch, next to `info.rkt`. + +Expected file type: + + *.dll + +List every shipped native file in `copy-foreign-libs` in `info.rkt`. + +Racket Package Index source: + + #x86_64-win32 diff --git a/info.rkt b/info.rkt new file mode 100644 index 0000000..1cf6014 --- /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-win32\"") + +(define pkg-authors + '(hans)) + +(define license + '(Apache-2.0 OR MIT)) + +(define install-platform + "win32\\x86_64") + +;; Add every native library shipped in this branch, including runtime +;; dependencies required by the primary audio libraries. +(define copy-foreign-libs + '()) + +(define deps + '("base"))