Skip to content

Commit 80b37ba

Browse files
committed
updated build-pkg-win for FluidSynth 1.0.0
1 parent bf138f1 commit 80b37ba

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

FluidSynth/build-pkg-mac.ck

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Package pkg("FluidSynth");
1515
"https://github.com/ccrma/chugins" => pkg.repository;
1616

1717
"MIT" => pkg.license;
18-
"Chugin for loading FluidSynth soundfonts" => pkg.description;
18+
"A UGen for loading and rendering soundfont" => pkg.description;
1919

20-
["midi", "FluidSynth", "UGen"] => pkg.keywords;
20+
["MIDI", "FluidSynth", "UGen"] => pkg.keywords;
2121

2222
// generate a package-definition.json
2323
// This will be stored in "Chumpinate/package.json"

FluidSynth/build-pkg-win.ck

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Package pkg("FluidSynth");
1515
"https://github.com/ccrma/chugins" => pkg.repository;
1616

1717
"MIT" => pkg.license;
18-
"Chugin for loading FluidSynth soundfonts" => pkg.description;
18+
"A UGen for loading and rendering soundfont" => pkg.description;
1919

20-
["midi", "FluidSynth", "UGen"] => pkg.keywords;
20+
["MIDI", "FluidSynth", "UGen"] => pkg.keywords;
2121

2222
// generate a package-definition.json
2323
// This will be stored in "Chumpinate/package.json"
@@ -32,11 +32,11 @@ PackageVersion ver("FluidSynth", version);
3232

3333
"1.5.4.0" => ver.languageVersionMin;
3434

35-
"win" => ver.os;
35+
"windows" => ver.os;
3636
"x86_64" => ver.arch;
3737

3838
// The chugin file
39-
ver.addFile("./builddir-release/FluidSynth.chug");
39+
ver.addFile("./builddir-win/FluidSynth.chug");
4040

4141
// These build files are examples as well
4242
ver.addExampleFile("FluidSynth-play.ck");

Line/build-pkg-win.ck

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ PackageVersion ver("Line", version);
3636
"x86_64" => ver.arch;
3737

3838
// The chugin file
39-
ver.addFile("./Line.chug");
39+
ver.addFile("./x64/Release/Line.chug");
4040

4141
// These build files are examples as well
4242
ver.addExampleFile("examples/basic.ck");
@@ -58,4 +58,4 @@ chout <= "ssh [email protected] \"mkdir -p ~/Library/Web/chugins/
5858
chout <= "scp Line_windows.zip [email protected]:~/Library/Web/" <= path <= IO.newline();
5959

6060
// Generate a version definition json file, stores this in "chumpinate/<VerNo>/Line_windows.json"
61-
ver.generateVersionDefinition("Line_windows", "./" );
61+
ver.generateVersionDefinition("Line_windows", "./" );

0 commit comments

Comments
 (0)