mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-02 21:18:51 +02:00
51 lines
1009 B
Bash
51 lines
1009 B
Bash
SUMMARY="Find and listen to internet radio stations"
|
|
DESCRIPTION="'StreamRadio' helps you find and listen to internet radio \
|
|
streams."
|
|
HOMEPAGE="https://github.com/fishpond-haiku/Haiku-Radio"
|
|
LICENSE="MIT"
|
|
COPYRIGHT="2017 Kai Niessen"
|
|
REVISION="1"
|
|
srcGitRev="26f3bbda29da165c849d246038af98e17270249c"
|
|
SOURCE_URI="https://github.com/fishpond-haiku/Haiku-Radio/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="05a015706082618e7282db537852aa697b949cb1a34f698733d0b69131938d3b"
|
|
SOURCE_DIR="Haiku-Radio-$srcGitRev"
|
|
PATCHES="streamradio-$portVersion.patchset"
|
|
ARCHITECTURES="x86_gcc2 x86_64"
|
|
|
|
PROVIDES="
|
|
streamradio = $portVersion
|
|
app:StreamRadio = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libxml2
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libxml2
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:gcc
|
|
cmd:make
|
|
"
|
|
|
|
USER_SETTINGS_FILES="
|
|
settings/StreamRadio.settings
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
mkdir -p dist
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
mv ./dist/StreamRadio $appsDir
|
|
|
|
addAppDeskbarSymlink $appsDir/StreamRadio
|
|
}
|