From 88fea5a7ae67d5a1cfa9f6a32e5f820a31861d5f Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 22 Feb 2022 17:16:33 +0000 Subject: added audio and media libraries --- repo/media/libtheora.xibuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 repo/media/libtheora.xibuild (limited to 'repo/media/libtheora.xibuild') diff --git a/repo/media/libtheora.xibuild b/repo/media/libtheora.xibuild new file mode 100644 index 0000000..6e658f5 --- /dev/null +++ b/repo/media/libtheora.xibuild @@ -0,0 +1,22 @@ +#!/bin/bash + +MAKEDEPS=(make) +DEPS=(libogg libvorbis) + +DESC="An open video codec developed by the Xiph.org" + +PKG_VER=1.1.1 +SOURCE=https://downloads.xiph.org/releases/theora/libtheora-$PKG_VER.tar.xz + +prepare () { + sed -i 's/png_\(sizeof\)/\1/g' examples/png2theora.c && +} + +build () { + ./configure --prefix=/usr --disable-static && + make +} + +package () { + make DESTDIR=$PKG_DEST install +} -- cgit v1.2.1