cherry_blossom: switch to HaikuArchives repo.

This commit is contained in:
Jerome Duval
2018-09-14 15:20:15 +02:00
parent 8685282bb6
commit 3d18e2591c
2 changed files with 11 additions and 42 deletions

View File

@@ -1,14 +1,16 @@
SUMMARY="Cherry Blossom is media player for the Haiku Operating System"
SUMMARY="A media player for the Haiku Operating System"
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 \
Cherry Blossom will also be able to play your files."
HOMEPAGE="http://gitorious.org/cherry-blossom/"
HOMEPAGE="https://github.com/HaikuArchives/CherryBlossom/"
COPYRIGHT="2010 Bryce Groff"
LICENSE="MIT"
REVISION="2"
SOURCE_URI="git+http://gitorious.org/cherry-blossom/cherry-blossom.git"
PATCHES="cherry_blossom-1.0.patch"
REVISION="3"
srcGitRev="1f2804193deaf9fb08b1578c88ad846b6b15f5c8"
SOURCE_URI="https://github.com/HaikuArchives/CherryBlossom/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="757fec333986a791591a0fe5dcfff2db533cf2b73bab8a1a1661c745d9172ed3"
SOURCE_DIR="CherryBlossom-$srcGitRev"
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
@@ -18,11 +20,12 @@ PROVIDES="
"
REQUIRES="
haiku
lib:libtag
"
BUILD_REQUIRES="
haiku_devel
taglib_devel
devel:libtag
"
BUILD_PREREQUIRES="
makefile_engine
@@ -32,12 +35,14 @@ BUILD_PREREQUIRES="
BUILD()
{
cd src
make OBJ_DIR=objects \
BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
}
INSTALL()
{
cd src
mkdir -p ${appsDir}
cp -a objects/Cherry_Blossom $appsDir
addAppDeskbarSymlink ${appsDir}/Cherry_Blossom

View File

@@ -1,36 +0,0 @@
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..d134de0
--- /dev/null
+++ b/makefile
@@ -0,0 +1,30 @@
+NAME= Cherry_Blossom
+
+TYPE= APP
+
+SRCS= interface/DrawingTidbits.cpp \
+interface/PositionToolTip.cpp \
+interface/TransportButton.cpp \
+interface/PeakView.cpp \
+interface/SeekSlider.cpp \
+interface/VolumeSlider.cpp \
+views/AlbumView.cpp \
+views/ControlView.cpp \
+views/MusicView.cpp \
+views/SearchView.cpp \
+views/ArtistView.cpp \
+views/GenreView.cpp \
+views/PlayListView.cpp \
+views/SongView.cpp \
+CherryBlossom.cpp \
+CherryBlossomWindow.cpp \
+
+SYSTEM_INCLUDE_PATHS = /boot/system/develop/headers/private/interface/ \
+ /boot/system/develop/headers/private/shared/
+
+
+LIBS= be locale tag
+
+APP_VERSION = 1.0
+
+include $(BUILDHOME)/etc/makefile-engine