diff options
author | AnicJov <contact.andrija@gmail.com> | 2021-03-08 16:04:27 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-09 07:29:35 +0100 |
commit | 68f2ef10973ba61941585ba83b4c1c68d4c31208 (patch) | |
tree | 5c6eb34b6031d29d6e40fe021ec849eb54b53ff8 /Ports/libogg | |
parent | 389dddd4b372b3d29e1629a97315e7432e3f04f1 (diff) | |
download | serenity-68f2ef10973ba61941585ba83b4c1c68d4c31208.zip |
Ports: Add libogg
This library will allow us to port more multimedia programs and games,
since it's a common dependency of such projects. I was looking at
Scummvm's dependencies in particular, with a goal of porting them all
eventually, so that we can have Myst running in Serenity!
Diffstat (limited to 'Ports/libogg')
-rw-r--r-- | Ports/libogg/package.sh | 6 | ||||
-rw-r--r-- | Ports/libogg/patches/configure.patch | 12 |
2 files changed, 18 insertions, 0 deletions
diff --git a/Ports/libogg/package.sh b/Ports/libogg/package.sh new file mode 100644 index 0000000000..89d14ff95a --- /dev/null +++ b/Ports/libogg/package.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env -S bash ../.port_include.sh +port=libogg +version=1.3.4 +useconfigure=true +files="https://github.com/xiph/ogg/releases/download/v${version}/libogg-${version}.tar.gz libogg-${version}.tar.gz" +workdir="libogg-${version}" diff --git a/Ports/libogg/patches/configure.patch b/Ports/libogg/patches/configure.patch new file mode 100644 index 0000000000..5796357d63 --- /dev/null +++ b/Ports/libogg/patches/configure.patch @@ -0,0 +1,12 @@ +diff -ru libogg-1.3.4/config.sub libogg-1.3.4-patched/config.sub +--- libogg-1.3.4/config.sub 2021-03-08 15:40:56.932153900 +0100 ++++ libogg-1.3.4-patched/config.sub 2021-03-08 15:40:43.633856800 +0100 +@@ -1333,7 +1333,7 @@ + # The portable systems comes first. + # Each alternative MUST end in a * to match a version number. + # sysv* is not here because it comes later, after sysvr4. +- gnu* | bsd* | mach* | minix* | genix* | ultrix* | irix* \ ++ gnu* | bsd* | mach* | minix* | genix* | ultrix* | serenity* | irix* \ + | *vms* | esix* | aix* | cnk* | sunos | sunos[34]*\ + | hpux* | unos* | osf* | luna* | dgux* | auroraux* | solaris* \ + | sym* | kopensolaris* | plan9* \ |