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/libvorbis.xibuild | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 repo/media/libvorbis.xibuild (limited to 'repo/media/libvorbis.xibuild') diff --git a/repo/media/libvorbis.xibuild b/repo/media/libvorbis.xibuild new file mode 100644 index 0000000..990efc9 --- /dev/null +++ b/repo/media/libvorbis.xibuild @@ -0,0 +1,19 @@ +#!/bin/bash + +MAKEDEPS=(make) +DEPS=(libogg) + +DESC="Reference implementation of the Ogg Vorbis audio format" + +PKG_VER=1.3.7 +SOURCE=https://downloads.xiph.org/releases/vorbis/libvorbis-$PKG_VER.tar.xz + +build () { + ./configure --prefix=/usr --disable-static && + make +} + +package () { + make DESTDIR=$PKG_DEST install + install -v -m644 doc/Vorbis* $PKG_DEST/usr/share/doc/libvorbis-$PKG_VER +} -- cgit v1.2.1