Files
haikuports/haiku-apps/voxophone/voxophone-1.0.recipe
waddlesplash 4f180bdb94 Utilize the new "all" ARCHITECTURES keyword in most recipes. (#6189)
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has,
is transformed into "all", and then the other entries in ARCHITECTURES
either dropped or rearranged appropriately.
2021-09-15 15:40:18 -04:00

48 lines
956 B
Bash

SUMMARY="An online radio player"
DESCRIPTION="Voxophone is an online radio player application for Haiku."
HOMEPAGE="https://github.com/aarroyoc/Voxophone"
COPYRIGHT="2015 Adrian Arroyo Calle"
LICENSE="MIT"
REVISION="1"
srcGitRev="67514047957bb8a186673ccc6fa71d2d0a1e1728"
SOURCE_URI="https://github.com/aarroyoc/Voxophone/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="bc98a70248057aa482f038e3689876dc0632aca4aa65d2417d9f692c86b486b5"
SOURCE_FILENAME="voxophone-$portVersion-$srcGitRev.tar.gz"
SOURCE_DIR="Voxophone-$srcGitRev"
PATCHES="voxophone-$portVersion.patchset"
ARCHITECTURES="all"
PROVIDES="
voxophone = $portVersion
app:Voxophone = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:cmake
cmd:g++
cmd:make
"
defineDebugInfoPackage voxophone \
$appsDir/Voxophone
BUILD()
{
cmake .
make
}
INSTALL()
{
install -d $appsDir
install Voxophone $appsDir
addAppDeskbarSymlink $appsDir/Voxophone
}