kde/Plasma: libogg+libvorbis (vorbisfile REQUIRED por libcanberra 0.30)

This commit is contained in:
2026-07-13 19:57:32 -04:00
parent 3b630015c3
commit 47c14fc825
3 changed files with 35 additions and 1 deletions
+1 -1
View File
@@ -22,4 +22,4 @@ configure = '''cp /usr/share/libtool/build-aux/config.sub /usr/share/libtool/bui
compile = 'make -j"$(nproc)"'
install = "make install DESTDIR=/out && find /out -name '*.la' -delete"
[deps]
build = ["pkgconf", "libtool"]
build = ["pkgconf", "libtool", "libvorbis"]
+17
View File
@@ -0,0 +1,17 @@
# libogg 1.3.5 — contenedor Ogg (C). Dep de libvorbis (→ libcanberra → plasma-workspace). Autotools limpio.
name = "libogg"
version = "1.3.5"
[source]
tarball = "https://downloads.xiph.org/releases/ogg/libogg-1.3.5.tar.xz"
sha256 = "c4d91be36fc8e54deae7575241e03f4211eb102afb3fc0775fbbc1b740016705"
[build]
compiler = "zig-cc"
target = "x86_64-linux-musl"
link = "dynamic"
zig_version = "0.13.0"
[build.phases]
configure = './configure --build=$CBUILD --host=$CHOST --prefix=/usr --disable-static --enable-shared'
compile = 'make -j"$(nproc)"'
install = "make install DESTDIR=/out && find /out -name '*.la' -delete"
[deps]
build = ["pkgconf"]
+17
View File
@@ -0,0 +1,17 @@
# libvorbis 1.3.7 — códec Vorbis + vorbisfile (C). Lo exige libcanberra (lector de sonidos .ogg). Autotools.
name = "libvorbis"
version = "1.3.7"
[source]
tarball = "https://downloads.xiph.org/releases/vorbis/libvorbis-1.3.7.tar.xz"
sha256 = "b33cc4934322bcbf6efcbacf49e3ca01aadbea4114ec9589d1b1e9d20f72954b"
[build]
compiler = "zig-cc"
target = "x86_64-linux-musl"
link = "dynamic"
zig_version = "0.13.0"
[build.phases]
configure = './configure --build=$CBUILD --host=$CHOST --prefix=/usr --disable-static --enable-shared'
compile = 'make -j"$(nproc)"'
install = "make install DESTDIR=/out && find /out -name '*.la' -delete"
[deps]
build = ["pkgconf", "libogg"]