mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-12-15 21:29:06 +00:00
7514fb8237
Signed-off-by: CvH <namerp@googlemail.com>
30 lines
1.0 KiB
Makefile
30 lines
1.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="snapclient"
|
|
PKG_VERSION="0.28.0"
|
|
PKG_REV="0"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="GPLv3"
|
|
PKG_DEPENDS_TARGET="toolchain alsa-plugins snapcast"
|
|
PKG_SECTION="service"
|
|
PKG_SHORTDESC="Snapclient: Synchronous multi-room audio client"
|
|
PKG_LONGDESC="Snapclient (${PKG_VERSION}) is a Snapcast client. Snapcast is a multi-room client-server audio system, where all clients are time synchronized with the server to play perfectly synced audioplays."
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
PKG_IS_ADDON="yes"
|
|
PKG_ADDON_NAME="Snapclient"
|
|
PKG_ADDON_TYPE="xbmc.service.library"
|
|
PKG_MAINTAINER="Anton Voyl (awiouy)"
|
|
|
|
addon() {
|
|
mkdir -p ${ADDON_BUILD}/${PKG_ADDON_ID}/{bin,lib.private}
|
|
|
|
cp $(get_install_dir snapcast)/usr/bin/snapclient \
|
|
${ADDON_BUILD}/${PKG_ADDON_ID}/bin
|
|
patchelf --add-rpath '$ORIGIN/../lib.private' ${ADDON_BUILD}/${PKG_ADDON_ID}/bin/snapclient
|
|
|
|
cp $(get_install_dir alsa-plugins)/usr/lib/alsa/*.so \
|
|
${ADDON_BUILD}/${PKG_ADDON_ID}/lib.private
|
|
}
|