waave, bump version, remove old bep file (#2061)

This commit is contained in:
Schrijvers Luc
2018-02-14 01:52:31 +01:00
committed by waddlesplash
parent 5893d4bb5b
commit 5ec2df850d
2 changed files with 57 additions and 29 deletions

View File

@@ -1,29 +0,0 @@
DESCRIPTION="The audio/video engine - Why Another Audio Video Engine"
HOMEPAGE="http://waave.sourceforge.net"
SOURCE_URI="http://sourceforge.net/projects/waave/files/waave-1.01.tar.gz/download"
REVISION="1"
STATUS_HAIKU="broken"
DEPEND="media-libs/libsdl >= 1.2.15
media-video/ffmeg >= 0.10.2"
CHECKSUM_MD5="7f168d3122a3889ee6da3a380cfe1c99"
BUILD()
{
cd waave-1.01
./configure --prefix=`finddir B_COMMON_DIRECTORY`
make
}
INSTALL()
{
cd waave-1.01
make install
}
TEST()
{
cd waave-1.01/test
make
}
LICENSE="GNU GPL v3"
COPYRIGHT="2012 Baptiste Pellegrin"

View File

@@ -0,0 +1,57 @@
SUMMARY="Why Another Audio Video Engine"
DESCRIPTION="Waave intent to be a simple, modular and multi-contextual \
audio/video library based on FFmpeg and SDL. Its name refers to a natural \
question you can ask yourself : Why Another Audio Video Engine ?"
HOMEPAGE="http://waave.sourceforge.net/"
COPYRIGHT="2012 Baptiste Pellegrin"
LICENSE="GNU GPL v3"
REVISION="1"
SOURCE_URI="https://downloads.sourceforge.net/waave/waave-$portVersion.tar.gz"
CHECKSUM_SHA256="f4f151b0e7f858de819f499443bb46ba08b55e488ed3c5dc30473b593100801e"
ARCHITECTURES="!x86_gcc2 ?x86 ?x86_64"
SECONDARY_ARCHITECTURES="?x86"
PROVIDES="
waave$secondaryArchSuffix = $portVersion
cmd:waaveplayer$secondaryArchSuffix
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libavutil$secondaryArchSuffix
lib:libavcodec$secondaryArchSuffix
lib:libavformat$secondaryArchSuffix
lib:libavresample$secondaryArchSuffix
lib:libswscale$secondaryArchSuffix
lib:libswresample$secondaryArchSuffix
lib:libSDL$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libavutil$secondaryArchSuffix
devel:libavcodec$secondaryArchSuffix
devel:libavformat$secondaryArchSuffix
devel:libavresample$secondaryArchSuffix
devel:libswscale$secondaryArchSuffix
devel:libswresample$secondaryArchSuffix
devel:libSDL$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:awk
cmd:diff
cmd:gcc$secondaryArchSuffix
cmd:make
cmd:pkg_config$secondaryArchSuffix
"
BUILD()
{
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
}