mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
80 lines
2.2 KiB
Bash
80 lines
2.2 KiB
Bash
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="http://www.xiph.org"
|
|
LICENSE="BSD (3-clause)"
|
|
COPYRIGHT="1994-2011 Xiph.Org Foundation"
|
|
SOURCE_URI="http://downloads.xiph.org/releases/ogg/libogg-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="e19ee34711d7af328cb26287f4137e70630e7261b17cbe3cd41011d73a654692"
|
|
REVISION="1"
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
libogg$secondaryArchSuffix = $portVersion
|
|
lib:libogg$secondaryArchSuffix = 0.8.2 compat >= 0
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
BUILD_REQUIRES="
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:libtoolize
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
libtoolize --force --copy --install
|
|
aclocal
|
|
autoconf
|
|
automake
|
|
runConfigure ./configure \
|
|
--docdir $developDocDir
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
prepareInstalledDevelLibs libogg
|
|
fixPkgconfig
|
|
|
|
# devel package
|
|
packageEntries devel \
|
|
$dataDir \
|
|
$developDir
|
|
}
|
|
|
|
# ----- devel package -------------------------------------------------------
|
|
|
|
PROVIDES_devel="
|
|
libogg${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libogg$secondaryArchSuffix = 0.8.2 compat >= 0
|
|
"
|
|
REQUIRES_devel="
|
|
libogg$secondaryArchSuffix == $portVersion
|
|
"
|