mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
54 lines
1.3 KiB
Bash
54 lines
1.3 KiB
Bash
SUMMARY="C++ libraries for multimedia streaming"
|
|
DESCRIPTION="live555 forms a set of C++ libraries for multimedia streaming \
|
|
using open standard protocols. The library can be used to build streaming \
|
|
applications using various audio and video codecs."
|
|
HOMEPAGE="http://www.live555.com/liveMedia/"
|
|
COPYRIGHT="Live Networks, Inc."
|
|
LICENSE="GNU LGPL v2.1"
|
|
REVISION="1"
|
|
SOURCE_URI="https://github.com/xanview/live555/archive/d9e97d7953d531a243a8372870bdb6c7a9bb80cb.tar.gz"
|
|
CHECKSUM_SHA256="c6cb4a6ad32a329b95cc16fa97b6c3ac43c70ac27c97bf1b2f56dc4a474759d7"
|
|
SOURCE_DIR="live555-d9e97d7953d531a243a8372870bdb6c7a9bb80cb"
|
|
PATCHES="live555-2016.01.29.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
live555$secondaryArchSuffix = $portVersion
|
|
lib:live555$secondaryArchSuffix = $portVersion
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
live555${secondaryArchSuffix}_devel = $portVersion
|
|
"
|
|
REQUIRES_devel="
|
|
live555$secondaryArchSuffix == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:ld$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
./genMakefiles haiku
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install PREFIX=$prefix INSTALLDIR=$prefix/bin LIBDIR=$developDir/lib \
|
|
MANDIR=$manDir/man1 BINDIR=$binDir DESTDIR=${DESTDIR}
|
|
}
|