mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-02 13:08:53 +02:00
50 lines
969 B
Bash
50 lines
969 B
Bash
SUMMARY="Cherry Blossom is media player for the Haiku Operating System"
|
||
DESCRIPTION="
|
||
Cherry Blossom is a 100% native application. Cherry Blossom uses Haiku \
|
||
specific API’s for handling media, so if Haiku can play your media files, then \
|
||
Cherry Blossom will also be able to play your files.
|
||
"
|
||
HOMEPAGE="http://gitorious.org/cherry-blossom/"
|
||
SOURCE_URI="git+http://gitorious.org/cherry-blossom/cherry-blossom.git"
|
||
REVISION="1"
|
||
|
||
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
|
||
|
||
LICENSE="MIT"
|
||
COPYRIGHT="2010 Bryce Groff"
|
||
|
||
PROVIDES="
|
||
cherry_blosom = $portVersion
|
||
app:Cherry_Blossom = $portVersion
|
||
"
|
||
|
||
REQUIRES="
|
||
haiku
|
||
"
|
||
|
||
BUILD_REQUIRES="
|
||
haiku_devel
|
||
taglib_devel
|
||
"
|
||
|
||
BUILD_PREREQUIRES="
|
||
makefile_engine
|
||
cmd:gcc
|
||
cmd:make
|
||
"
|
||
|
||
PATCHES="cherry_blossom-1.0.patch"
|
||
|
||
BUILD()
|
||
{
|
||
make OBJ_DIR=objects \
|
||
BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
|
||
}
|
||
|
||
INSTALL()
|
||
{
|
||
mkdir -p ${appsDir}
|
||
cp -a objects/Cherry_Blossom $appsDir
|
||
addAppDeskbarSymlink ${appsDir}/Cherry_Blossom
|
||
}
|