Files
haikuports/media-sound/ncmpcpp/ncmpcpp-0.9.2.recipe
2024-02-08 13:21:53 +01:00

115 lines
3.1 KiB
Bash

SUMMARY="A commandline client for Music Player Daemon"
DESCRIPTION="Music Player Daemon (MPD) is a flexible, powerful, server-side \
application for playing music. Through plugins and libraries it can play a \
variety of sound files while being controlled by its network protocol.
NCMPCPP is an ncurses based commandline client for Music Player Daemon."
HOMEPAGE="https://rybczak.net/ncmpcpp/"
COPYRIGHT="2008-2018 The NCMPCPP Project"
LICENSE="GNU GPL v2"
REVISION="6"
SOURCE_URI="https://github.com/arybczak/ncmpcpp/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="9321275e26ad4308448e661bb879b96d446b203cf57b3591db17b186387a7847"
SOURCE_DIR="ncmpcpp-$portVersion"
PATCHES="ncmpcpp-$portVersion.patchset"
ARCHITECTURES="all !x86_gcc2 ?arm ?ppc"
SECONDARY_ARCHITECTURES="x86"
commandSuffix=$secondaryArchSuffix
commandBinDir=$binDir
if [ "$targetArchitecture" = x86_gcc2 ]; then
commandSuffix=
commandBinDir=$prefix/bin
fi
PROVIDES="
ncmpcpp$secondaryArchSuffix = $portVersion
cmd:ncmpcpp$commandSuffix
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libboost_filesystem$secondaryArchSuffix
lib:libboost_system$secondaryArchSuffix
lib:libboost_locale$secondaryArchSuffix
lib:libboost_program_options$secondaryArchSuffix
lib:libboost_regex$secondaryArchSuffix
lib:libboost_thread$secondaryArchSuffix
lib:libcrypto$secondaryArchSuffix
lib:libcurl$secondaryArchSuffix
lib:libfftw3$secondaryArchSuffix
lib:libicui18n$secondaryArchSuffix
lib:libmpdclient$secondaryArchSuffix
lib:libncursesw$secondaryArchSuffix
lib:libreadline$secondaryArchSuffix
lib:libssl$secondaryArchSuffix
lib:libtag$secondaryArchSuffix
lib:libz$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libboost_filesystem$secondaryArchSuffix >= 1.83.0
devel:libboost_system$secondaryArchSuffix >= 1.83.0
devel:libboost_locale$secondaryArchSuffix >= 1.83.0
devel:libboost_program_options$secondaryArchSuffix >= 1.83.0
devel:libboost_regex$secondaryArchSuffix >= 1.83.0
devel:libboost_thread$secondaryArchSuffix >= 1.83.0
devel:libcurl$secondaryArchSuffix
devel:libfftw3$secondaryArchSuffix
devel:libicui18n$secondaryArchSuffix >= 74
devel:libmpdclient$secondaryArchSuffix
devel:libncursesw$secondaryArchSuffix
devel:libreadline$secondaryArchSuffix
devel:libtag$secondaryArchSuffix >= 2
"
BUILD_PREREQUIRES="
cmd:autoreconf
cmd:awk
cmd:gcc$secondaryArchSuffix
cmd:grep
cmd:ld$secondaryArchSuffix
cmd:libtoolize$secondaryArchSuffix
cmd:make
cmd:pkg_config$secondaryArchSuffix
cmd:ranlib$secondaryArchSuffix
cmd:sed
"
USER_SETTINGS_FILES="
settings/ncmpcpp directory
settings/ncmpcpp/lyrics directory
settings/ncmpcpp/config
"
defineDebugInfoPackage ncmpcpp$secondaryArchSuffix \
"$commandBinDir"/ncmpcpp
BUILD()
{
export CFLAGS="-D_BSD_SOURCE"
export LDFLAGS="-lnetwork -lbsd"
autoreconf -vfi
runConfigure --omit-dirs binDir ./configure --bindir="$commandBinDir" \
--enable-outputs \
--enable-visualizer \
--enable-clock
make $jobArgs
}
INSTALL()
{
sed -i -e "s,\$(prefix)/share/doc/\$(PACKAGE),$docDir,g" Makefile doc/Makefile
sed -i -e "s,\${prefix}/share,$dataDir,g" Makefile doc/Makefile
make install
}
TEST()
{
make check
}