mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
libogg: bump version (#4154)
This commit is contained in:
committed by
Sergei Reznikov
parent
62a4af2c56
commit
6e54fd0e97
79
media-libs/libogg/libogg-1.3.4.recipe
Normal file
79
media-libs/libogg/libogg-1.3.4.recipe
Normal file
@@ -0,0 +1,79 @@
|
||||
SUMMARY="Ogg multimedia container format library"
|
||||
DESCRIPTION="
|
||||
Ogg is a multimedia container format, and the native file and stream format \
|
||||
for the Xiph.org multimedia codecs. As with all Xiph.org technology is it an \
|
||||
open format free for anyone to use.
|
||||
As with most container formats it encapsulates raw compressed data and allows \
|
||||
the interleaving of audio and video data inside a single convenient format. \
|
||||
Other examples of container formats are Quicktime .mov, the MPEG program \
|
||||
stream, and AVI.
|
||||
|
||||
In addition to encapsulation and interleave of multiple data streams, Ogg \
|
||||
provides packet framing, error detection, and periodic timestamps for seeking, \
|
||||
all in a small, bounded percentage bitrate overhead.
|
||||
Ogg is a stream oriented container, meaning it can be written and read in one \
|
||||
pass, making it a natural fit for internet streaming and use in processing \
|
||||
pipelines. This stream orientation is the major design difference over other \
|
||||
file-based container formats.
|
||||
"
|
||||
HOMEPAGE="https://www.xiph.org"
|
||||
COPYRIGHT="1994-2019 Xiph.Org Foundation"
|
||||
LICENSE="BSD (3-clause)"
|
||||
REVISION="1"
|
||||
SOURCE_URI="http://downloads.xiph.org/releases/ogg/libogg-$portVersion.tar.gz"
|
||||
CHECKSUM_SHA256="fe5670640bd49e828d64d2879c31cb4dde9758681bb664f9bdbf159a01b0c76e"
|
||||
|
||||
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
||||
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
||||
|
||||
PROVIDES="
|
||||
libogg$secondaryArchSuffix = $portVersion
|
||||
lib:libogg$secondaryArchSuffix = 0.8.4 compat >= 0
|
||||
"
|
||||
REQUIRES="
|
||||
haiku$secondaryArchSuffix
|
||||
"
|
||||
|
||||
PROVIDES_devel="
|
||||
libogg${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libogg$secondaryArchSuffix = 0.8.4 compat >= 0
|
||||
"
|
||||
REQUIRES_devel="
|
||||
libogg$secondaryArchSuffix == $portVersion
|
||||
"
|
||||
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
"
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:aclocal
|
||||
cmd:autoconf
|
||||
cmd:automake
|
||||
cmd:gcc$secondaryArchSuffix
|
||||
cmd:ld$secondaryArchSuffix
|
||||
cmd:libtoolize$secondaryArchSuffix
|
||||
cmd:make
|
||||
"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
autoreconf -fi
|
||||
runConfigure ./configure \
|
||||
--docdir $developDocDir
|
||||
make $jobArgs
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
make install
|
||||
|
||||
rm $libDir/libogg.la
|
||||
|
||||
prepareInstalledDevelLibs libogg
|
||||
fixPkgconfig
|
||||
|
||||
# devel package
|
||||
packageEntries devel \
|
||||
$dataDir \
|
||||
$developDir
|
||||
}
|
||||
Reference in New Issue
Block a user