From 2e4eddedb755f0c0f88450b1fc1d8b0830132a71 Mon Sep 17 00:00:00 2001 From: davidovski Date: Fri, 3 Jun 2022 13:15:00 +0100 Subject: added ardour --- repo/fluidsynth/fluidsynth.xibuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 repo/fluidsynth/fluidsynth.xibuild (limited to 'repo/fluidsynth') diff --git a/repo/fluidsynth/fluidsynth.xibuild b/repo/fluidsynth/fluidsynth.xibuild new file mode 100644 index 0000000..f867527 --- /dev/null +++ b/repo/fluidsynth/fluidsynth.xibuild @@ -0,0 +1,23 @@ +#!/bin/sh + +NAME="fluidsynth" +DESC="A real-time software synthesizer based on the SoundFont 2 specifications" + +MAKEDEPS="alsa-lib dbus glib jack libsndfile pulseaudio readline cmake doxygen graphviz" + +PKG_VER=2.2.5 +SOURCE="https://github.com/fluidsynth/fluidsynth/archive/v$PKG_VER/fluidsynth-v$PKG_VER.tar.gz" + +build() { + cmake -B build \ + -DCMAKE_BUILD_TYPE=None \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DLIB_INSTALL_DIR=lib \ + -DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth + cmake --build build +} + +package() { + DESTDIR="$PKG_DEST" cmake --install build +} + -- cgit v1.2.1