38fff19e02
update 1.1.6 (25 Jun 2017) to 2.2.3 (12 Sep 2021) changelog: https://github.com/FluidSynth/fluidsynth/releases release notes: - https://github.com/FluidSynth/fluidsynth/releases/tag/v2.1.8 - https://github.com/FluidSynth/fluidsynth/releases/tag/v2.2.0 - https://github.com/FluidSynth/fluidsynth/releases/tag/v2.2.1 - https://github.com/FluidSynth/fluidsynth/releases/tag/v2.2.2 - https://github.com/FluidSynth/fluidsynth/releases/tag/v2.2.3 - enable linking with libsndfile - use static libraries during build
21 lines
865 B
Makefile
21 lines
865 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="fluidsynth"
|
|
PKG_VERSION="2.2.3"
|
|
PKG_SHA256="b31807cb0f88e97f3096e2b378c9815a6acfdc20b0b14f97936d905b536965c4"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://fluidsynth.org/"
|
|
PKG_URL="https://github.com/FluidSynth/fluidsynth/archive/v${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain glib libsndfile"
|
|
PKG_LONGDESC="FluidSynth renders midi music files as raw audio data, for playing or conversion."
|
|
PKG_BUILD_FLAGS="+pic"
|
|
|
|
PKG_CMAKE_OPTS_TARGET="-DBUILD_SHARED_LIBS=0 \
|
|
-DLIB_SUFFIX= \
|
|
-Denable-libsndfile=1 \
|
|
-Denable-pkgconfig=1 \
|
|
-Denable-pulseaudio=0 \
|
|
-Denable-readline=0"
|