0
0
Fork 0
haikuports/haiku-apps/cherry_blossom/cherry_blossom-1.0.recipe

50 lines
1.1 KiB
Bash
Raw Permalink Normal View History

SUMMARY="A media player for the Haiku Operating System"
2014-01-02 21:40:57 +00:00
DESCRIPTION="
Cherry Blossom is a 100% native application. Cherry Blossom uses Haiku \
specific APIs for handling media, so if Haiku can play your media files, then \
2016-02-26 15:33:51 +00:00
Cherry Blossom will also be able to play your files."
HOMEPAGE="https://github.com/HaikuArchives/CherryBlossom/"
2016-02-17 19:26:37 +00:00
COPYRIGHT="2010 Bryce Groff"
LICENSE="MIT"
2018-09-14 13:54:40 +00:00
REVISION="4"
srcGitRev="1f2804193deaf9fb08b1578c88ad846b6b15f5c8"
SOURCE_URI="https://github.com/HaikuArchives/CherryBlossom/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="757fec333986a791591a0fe5dcfff2db533cf2b73bab8a1a1661c745d9172ed3"
SOURCE_DIR="CherryBlossom-$srcGitRev"
2013-12-23 02:33:31 +00:00
ARCHITECTURES="?all x86_gcc2"
2013-12-23 02:33:31 +00:00
PROVIDES="
2018-08-06 15:14:02 +00:00
cherry_blossom = $portVersion
2014-10-28 21:25:03 +00:00
app:Cherry_Blossom = $portVersion
2013-12-23 02:33:31 +00:00
"
REQUIRES="
haiku
lib:libtag
2013-12-23 02:33:31 +00:00
"
BUILD_REQUIRES="
haiku_devel
devel:libtag
2013-12-23 02:33:31 +00:00
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc
cmd:make
"
BUILD()
{
cd src
2013-12-23 02:33:31 +00:00
make OBJ_DIR=objects \
BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
}
INSTALL()
{
cd src
2013-12-23 02:33:31 +00:00
mkdir -p ${appsDir}
2018-09-14 13:54:40 +00:00
cp -a objects/CherryBlossom $appsDir
addAppDeskbarSymlink ${appsDir}/CherryBlossom
2013-12-23 02:33:31 +00:00
}