Renamed "Radio" to "StreamRadio"

with added patch doing the renaming in About banner and code.
This commit is contained in:
Humdinger
2017-08-27 19:12:15 +02:00
parent 4ffff464e3
commit 6ca94d9118
2 changed files with 4378 additions and 7 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,6 @@
SUMMARY="Find and listen to internet radio stations" SUMMARY="Find and listen to internet radio stations"
DESCRIPTION="'Radio' helps you find and listen to internet radio streams." DESCRIPTION="'StreamRadio' helps you find and listen to internet radio \
streams."
HOMEPAGE="https://github.com/fishpond-haiku/Haiku-Radio" HOMEPAGE="https://github.com/fishpond-haiku/Haiku-Radio"
LICENSE="MIT" LICENSE="MIT"
COPYRIGHT="2017 Kai Niessen" COPYRIGHT="2017 Kai Niessen"
@@ -8,12 +9,12 @@ srcGitRev="26f3bbda29da165c849d246038af98e17270249c"
SOURCE_URI="https://github.com/fishpond-haiku/Haiku-Radio/archive/$srcGitRev.tar.gz" SOURCE_URI="https://github.com/fishpond-haiku/Haiku-Radio/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="05a015706082618e7282db537852aa697b949cb1a34f698733d0b69131938d3b" CHECKSUM_SHA256="05a015706082618e7282db537852aa697b949cb1a34f698733d0b69131938d3b"
SOURCE_DIR="Haiku-Radio-$srcGitRev" SOURCE_DIR="Haiku-Radio-$srcGitRev"
PATCHES="streamradio-$portVersion.patchset"
ARCHITECTURES="!x86_gcc2 !x86_64" ARCHITECTURES="x86_gcc2 x86_64"
PROVIDES=" PROVIDES="
radio = $portVersion streamradio = $portVersion
app:Radio = $portVersion app:StreamRadio = $portVersion
" "
REQUIRES=" REQUIRES="
haiku haiku
@@ -30,6 +31,10 @@ BUILD_PREREQUIRES="
cmd:make cmd:make
" "
USER_SETTINGS_FILES="
settings/StreamRadio.settings
"
BUILD() BUILD()
{ {
mkdir -p dist mkdir -p dist
@@ -39,7 +44,7 @@ BUILD()
INSTALL() INSTALL()
{ {
mkdir -p $appsDir mkdir -p $appsDir
mv ./dist/Radio $appsDir/Radio mv ./dist/StreamRadio $appsDir
addAppDeskbarSymlink $appsDir/Radio addAppDeskbarSymlink $appsDir/StreamRadio
} }