Skip to content
This repository was archived by the owner on Nov 20, 2025. It is now read-only.

Commit 44b6b79

Browse files
committed
fix(builder): update vorbis download URL and folder name
- Updates the libvorbis download URL from version 1.4.3 to 1.3.7 - Corrects the untarred directory name to match the downloaded version
1 parent 13e540a commit 44b6b79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/builder/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,10 +321,10 @@ func buildVorbis() {
321321
srcPath := path.Join(buildDir, "vorbis")
322322

323323
if !exists(zipPath) {
324-
download("https://ftp.osuosl.org/pub/xiph/releases/vorbis/vorbis-tools-1.4.3.tar.gz", zipPath)
324+
download("https://ftp.osuosl.org/pub/xiph/releases/vorbis/libvorbis-1.3.7.tar.gz", zipPath)
325325
}
326326

327-
untar(zipPath, srcPath, "libvorbis-1.4.3/")
327+
untar(zipPath, srcPath, "libvorbis-1.3.7/")
328328

329329
modify(
330330
path.Join(srcPath, "configure"),

0 commit comments

Comments
 (0)