mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-07 07:28:57 +02:00
59 lines
1.2 KiB
Bash
59 lines
1.2 KiB
Bash
SUMMARY="Find and listen to internet radio stations"
|
|
DESCRIPTION="StreamRadio helps you find and listen to internet radio streams."
|
|
HOMEPAGE="https://github.com/HaikuArchives/StreamRadio"
|
|
COPYRIGHT="2017 Kai Niessen
|
|
2018-2024 HaikuArchives team"
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="6"
|
|
srcGitRev="56a6422bc2a9148fb15b61342a29e9fa0d34efc1"
|
|
SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="488bad4d39100c18f84451961a7cd000c239cdbca025460c709636ae79e0e990"
|
|
SOURCE_DIR="StreamRadio-$srcGitRev"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
USER_SETTINGS_FILES="
|
|
settings/StreamRadio.settings
|
|
"
|
|
|
|
GLOBAL_WRITABLE_FILES="
|
|
settings/Stations
|
|
"
|
|
|
|
PROVIDES="
|
|
streamradio$secondaryArchSuffix = $portVersion
|
|
app:StreamRadio = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libstdc++$secondaryArchSuffix
|
|
lib:libxml2$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libxml2$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
mkdir -p dist
|
|
cd source
|
|
make
|
|
make bindcatalogs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
mv ./dist/StreamRadio $appsDir
|
|
|
|
addAppDeskbarSymlink $appsDir/StreamRadio
|
|
}
|