debian/0000755000000000000000000000000012103213550007156 5ustar debian/libfluidsynth-dev.examples0000644000000000000000000000001612017135074014357 0ustar doc/example.* debian/compat0000644000000000000000000000000212017135074010364 0ustar 9 debian/libfluidsynth-dev.install0000644000000000000000000000007712103213441014205 0ustar usr/include/* usr/lib/*/libfluidsynth.so usr/lib/*/pkgconfig/* debian/patches/0000755000000000000000000000000012103213327010607 5ustar debian/patches/series0000644000000000000000000000007212103213327012023 0ustar 10-ftbfs-bug-690006.patch 1001-revert_abi_break_114.patch debian/patches/1001-revert_abi_break_114.patch0000644000000000000000000000124212017135074016067 0ustar Description: Revert ABI break introduced with FluidSynth 1.1.4. Origin: upstream, commit:428 --- src/sfloader/fluid_defsfont.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- fluidsynth.orig/src/sfloader/fluid_defsfont.h +++ fluidsynth/src/sfloader/fluid_defsfont.h @@ -421,7 +421,7 @@ int fluid_defsfont_iteration_next(fluid_ int fluid_defsfont_load_sampledata(fluid_defsfont_t* sfont); int fluid_defsfont_add_sample(fluid_defsfont_t* sfont, fluid_sample_t* sample); int fluid_defsfont_add_preset(fluid_defsfont_t* sfont, fluid_defpreset_t* preset); - +fluid_sample_t* fluid_defsfont_get_sample(fluid_defsfont_t* sfont, char *s); /* * fluid_preset_t debian/patches/10-ftbfs-bug-690006.patch0000644000000000000000000000103612103213327014467 0ustar From: Christoph Egger Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=690006 Description: Revert broken patch from release 1.1.6 diff --git a/src/drivers/fluid_oss.c b/src/drivers/fluid_oss.c index 840dad1..40761db 100644 --- a/src/drivers/fluid_oss.c +++ b/src/drivers/fluid_oss.c @@ -45,7 +45,7 @@ #define BUFFER_LENGTH 512 // Build issue on some systems (OSS 4.0)? -#ifdef SNDCTL_DSP_CHANNELS +#ifndef SOUND_PCM_WRITE_CHANNELS #define SOUND_PCM_WRITE_CHANNELS SNDCTL_DSP_CHANNELS #endif debian/rules0000755000000000000000000000063412017135074010251 0ustar #!/usr/bin/make -f LDFLAGS+=-Wl,--as-needed ifneq ($(findstring $(DEB_HOST_ARCH_OS),kfreebsd hurd),) EXTRA_CONFIGURE_ARGS += -Denable-alsa=off -Denable-dbus=off endif DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) %: dh $@ -Scmake --parallel override_dh_auto_configure: dh_auto_configure -- \ -DLIB_SUFFIX="/$(DEB_HOST_MULTIARCH)" \ -Denable-ladspa=on \ $(EXTRA_CONFIGURE_ARGS) debian/docs0000644000000000000000000000002112017135074010032 0ustar NEWS README TODO debian/control0000644000000000000000000000442412103213441010564 0ustar Source: fluidsynth Section: sound Priority: optional Maintainer: Debian Multimedia Maintainers Uploaders: Alessio Treglia , David Henningsson Build-Depends: cmake, debhelper (>= 9~), ladspa-sdk, libasound2-dev, libglib2.0-dev (>= 2.6.5), libjack-dev, libpulse-dev, libreadline-dev (>= 5), libsndfile-dev, libtool Standards-Version: 3.9.4 Homepage: http://www.fluidsynth.org/ Vcs-Git: git://git.debian.org/pkg-multimedia/fluidsynth.git Vcs-Browser: http://git.debian.org/?p=pkg-multimedia/fluidsynth.git Package: fluidsynth Architecture: any Depends: libfluidsynth1 (>= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends} Conflicts: iiwusynth Replaces: iiwusynth Provides: iiwusynth Recommends: qsynth Description: Real-time MIDI software synthesizer Fluidsynth is a real-time midi synthesizer based on the soundfont2 specifications. It can be used to render MIDI input or MIDI files to audio. The MIDI events are read from a MIDI device. The sound is rendered in real-time to the sound output device. Package: libfluidsynth1 Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} Section: libs Depends: ${misc:Depends}, ${shlibs:Depends} Description: Real-time MIDI software synthesizer (runtime library) Fluidsynth is a real-time midi synthesizer based on the soundfont2 specifications. It can be used to render MIDI input or MIDI files to audio. The MIDI events are read from a MIDI device. The sound is rendered in real-time to the sound output device. . This package contains the runtime library. Package: libfluidsynth-dev Architecture: any Multi-Arch: same Section: libdevel Depends: libasound2-dev, libfluidsynth1 (= ${binary:Version}), libglib2.0-dev (>= 2.6.5), libjack-dev | libjack-jackd2-dev, libpulse-dev, libreadline-dev (>= 5), libsndfile-dev, ${misc:Depends} XS-Testsuite: autopkgtest Description: Real-time MIDI software synthesizer (development files) Fluidsynth is a real-time midi synthesizer based on the soundfont2 specifications. It can be used to render MIDI input or MIDI files to audio. The MIDI events are read from a MIDI device. The sound is rendered in real-time to the sound output device. . This package contains the development files. debian/libfluidsynth-dev.dirs0000644000000000000000000000001412017135074013500 0ustar usr/include debian/tests/0000755000000000000000000000000012103213351010317 5ustar debian/tests/control0000644000000000000000000000007112103213351011720 0ustar Tests: build Depends: build-essential, libfluidsynth-dev debian/tests/build0000644000000000000000000000142112103213351011337 0ustar #!/bin/sh # autopkgtest check: Builds a small application against libfluidsynth, checking # if it compiles, links and runs successfully. # Author: Rafał Cieślak set -e WORKDIR=$(mktemp -d) trap "rm -rf $WORKDIR" 0 INT QUIT ABRT PIPE TERM cd $WORKDIR cat < build_test.c #include int main(int argc, char** argv) { fluid_settings_t* settings; fluid_synth_t* synth; settings = new_fluid_settings(); //Using default settings. synth = new_fluid_synth(settings); if(!synth || !settings) //a null pointer? return 1; delete_fluid_synth(synth); delete_fluid_settings(settings); return 0; } EOF gcc -o build_test build_test.c -lfluidsynth echo "build: OK" [ -x build_test ] ./build_test echo "run: OK" debian/changelog0000644000000000000000000003624012103213550011035 0ustar fluidsynth (1.1.6-2) unstable; urgency=low [ Christoph Egger ] * fix FTBFS (Closes: #690006) [ Rafał Cieślak ] * Add a compile/run autopkg test. (Closes: #692812) [ Alessio Treglia ] * Bump debhelper requirement to 9. * Bump Standards. -- Alessio Treglia Sat, 02 Feb 2013 13:40:54 +0000 fluidsynth (1.1.6-1) unstable; urgency=low * New upstream bugfix-only release: - Handle MIDI End of track events, ticket #101 - Prevent broken rendering after an voice overflow, ticket #100 - Enable long arguments where available - Prevent libdbus crash * Remove build-dependency on libncurses5-dev. (Closes: #667892) * Bump Standards. -- Alessio Treglia Tue, 28 Aug 2012 14:43:04 +0200 fluidsynth (1.1.5-2) unstable; urgency=low * Build with MultiArch. * Enable parallel builds. -- Alessio Treglia Tue, 24 Jan 2012 18:45:57 +0100 fluidsynth (1.1.5-1) unstable; urgency=low * New upstream bugfix release. -- Alessio Treglia Mon, 05 Sep 2011 12:10:31 +0200 fluidsynth (1.1.4-2) unstable; urgency=low * Upload to unstable * Remove alternative build-dep on libjack-jackd2-dev. * Disable alsa and dbus on hurd (Closes: #637158). Thanks to Samuel Thibault for the patch. * Revert ABI break introduced with FluidSynth 1.1.4. - This is now binary compatible with FluidSynth << 1.1.4, patch taken from upstream trunk. -- Alessio Treglia Sat, 13 Aug 2011 11:21:32 +0200 fluidsynth (1.1.4-1) experimental; urgency=low * New upstream release: - Several improvements and fixes to the CMake build system. - Several bug fixes to the engine, notably quite a few which could cause FluidSynth to sound bad in some cases. - API additions, that make it possible to load MIDI files from memory to inspect/modify MIDI events as they are being played from a MIDI file to change channels between melodic and drum mode and to silence all notes in one command. - Improvements to the CoreAudio driver. -- Alessio Treglia Fri, 05 Aug 2011 10:08:40 +0200 fluidsynth (1.1.3-4) unstable; urgency=low * Drop LASH support. * Bump Standards. -- Alessio Treglia Thu, 19 May 2011 14:59:53 +0200 fluidsynth (1.1.3-3) unstable; urgency=low * Demote liblash-dev to libfluidsynth-dev's Suggests field (Closes: #611457). * Append -Wl,--as-needed flag to LDFLAGS. -- Alessio Treglia Wed, 09 Mar 2011 13:32:37 +0100 fluidsynth (1.1.3-2) unstable; urgency=low * Upload to unstable. -- Alessio Treglia Wed, 09 Feb 2011 00:12:25 +0100 fluidsynth (1.1.3-1) experimental; urgency=low * New upstream release: - Compilation with LADSPA enabled was broken in 1.1.2 - fixed. - Multichannel output broken when double precision was used - fixed. - Doxygen settings. - Mac OS X build system fixes. - Fix build problem with scummvm. - Optimize by not starting unused threads with multicore rendering. - Window handle creation/destruction in Windows dll version. - Race condition in alsa_seq / alsa_raw drivers caused them not to quit. * Remove patches, applied upstream. -- Alessio Treglia Sat, 16 Oct 2010 12:27:50 +0200 fluidsynth (1.1.2-2) experimental; urgency=low * Build-dep and dep on libjack-jackd2-dev (Closes: #597265). * Disable DBus support on kfreebsd-* archs to avoid it FTBFS (Closes: #597977). -- Alessio Treglia Wed, 29 Sep 2010 11:18:56 +0200 fluidsynth (1.1.2-1) experimental; urgency=low * New upstream release: - New CMake build system. + Winbuild and Macbuild directories dropped. + Autotools build system is deprecated, but is still working. - Rewriting of thread safety. + Two new settings control the thread safety mode. The default is to be backwards compatible. - Voice overflow settings. - Possible to update polyphony, up to 65536 (and beyond initial setting). - Possible to update sample rate (jack driver updates sample rate correctly). - MIDI Bank Select handling fixed. - Source files moved into different subdirectories. - Can use RealTimeKit (on Linux) to get real-time priority. - Shell commands for pitch bend and pitch bend range. - PulseAudio driver: specify media role, and allow pulseaudio to adjust latency. - Other bug fixes. * Change my email address. * Remove DM-Upload-Allowed: yes field. * Update Homepage field. * Bump Standards. * Update watch file. * Switch to format 3.0 (quilt). * Add debian/gbp.conf file. * Drop pulse-adjust-latency.patch patch, applied upstream. * Remove quilt build-dependency. * Static libraries are no longer provided. * Switch to cmake buildsystem, drop autotools stuff. * Adjust override_dh_auto_configure target to match cmake variables. * Really enable LADSPA support, patch taken from upstream's trunk. * Update debian/copyright file. * Set architecture of -DEV package to all. -- Alessio Treglia Tue, 14 Sep 2010 16:25:10 +0200 fluidsynth (1.1.1-4) unstable; urgency=low * Remove debian/README.Debian, no longer useful. * Disable ALSA support on kfreebsd-* architectures (Closes: #579914). -- Alessio Treglia Sun, 02 May 2010 16:38:57 +0200 fluidsynth (1.1.1-3) unstable; urgency=low [ David Henningsson ] * Allow pulseaudio to adjust latency by default. [ Alessio Treglia ] * Remove unneeded .la file. * Bump Standards-Version. -- Alessio Treglia Mon, 22 Mar 2010 18:41:22 +0100 fluidsynth (1.1.1-2) unstable; urgency=low * Fix libfluidsynth-dev uninstallable state by adjusting libglib2.0-dev dependency. * Switch to debhelper 7. * Drop CDBS. * Bump quilt build-dependency. -- Alessio Treglia Sat, 09 Jan 2010 13:58:45 +0100 fluidsynth (1.1.1-1) unstable; urgency=low [ David Henningsson ] * New upstream release * All code changes dropped (fixed upstream) * Update build system: debhelper 7, cdbs and quilt * New maintainer: Debian Multimedia Maintainers team * Bump Standards-Version to 3.8.3, no changes required * Remove optional dependency on libreadline5-dev (Closes: #553756) * Remove obsolete DFSG paragraph [ Alessio Treglia ] * Add myself as uploader. * Allow uploads by Debian Maintainers. * Lines should be shorter than 80 chars. * Add Vcs-* tags. * Enable LADSPA effect unit. * Fix copyright-refers-to-symlink-license lintian warning. -- David Henningsson Sun, 13 Dec 2009 11:43:00 +0100 fluidsynth (1.0.9+dfsg-2) unstable; urgency=low * Enable pulseaudio support (Closes: #531579) * Run commands after midi router is created (Closes: #528701) -- David Henningsson Mon, 18 Jun 2009 19:05:39 +0200 fluidsynth (1.0.9+dfsg-1.1) unstable; urgency=low * NMU to fix wrongly set maintainer in previous version * New maintainer (Closes: #503528) -- Ralf Treinen Thu, 21 May 2009 14:24:22 +0200 fluidsynth (1.0.9+dfsg-1) unstable; urgency=low [ Ralf Treinen ] * QA upload (sponsoring David Henningsson). [ David Henningsson ] * New upstream release (Closes: #524066) * Remove non-DFSG soundfonts and documentation (Closes: #524566) * Depend on libjack-dev instead of libjack0.100.0-dev (Closes: #527410) * Optionally depend on lash instead of ladcca * Rewrite debian/copyright file, now it includes exact copyright notices * Fix build problem with new libtool (moved ltmain.sh) (Closes: #527832) * Erase autotools files in debian/rules to avoid large diff.gz * Remove unused debian/manpages file * Keep upstream's config.{sub,guess}, since they're recent enough * Bump Standards-Version to 3.8.1, no changes required -- Ralf Treinen Thu, 21 May 2009 10:22:08 +0200 fluidsynth (1.0.8-2) unstable; urgency=low * QA upload. * Set Maintainer to Debian QA Group. * Remove Uploaders field. * Remove Vcs fields - repository contains only an initial svn-inject. * Bump Standards-Version to 3.8.0 - no changes required. * Remove DH_COMPAT=3 from rules and add a compat file for version 5. * Depend on unversioned debhelper. * Replace ${Source-Version} with ${binary:Version} on fluidsynth-dev. * Don't ignore make clean errors. * Convert copyright file to utf-8. * Remove unused dh_ calls from rules. * Remove empty postinst scripts. * Remove the autotools target from rules. Automatic modification of the changelog are discouraged and it's not doing something useful here anyway. * Depend on the default automake instead of automake1.4. * Enable autoreconf in the configure target and remove ltconfig. * Remove a file '?' from the diff - seems to be an error from some former upload and shouldn't be there. * Modify fluidsynth manpage so that it's a section 1 manpage. * Add a missing space in fluidsynth.1. * Escape some hyphens in fluidsynth.1 so that groff interprets them as minus. * ACK NMU from Peter Eisentraut (Closes: #478380). -- Sven Hoexter Thu, 25 Dec 2008 17:35:40 +0100 fluidsynth (1.0.8-1.1) unstable; urgency=low * Non-maintainer upload. * Fix bashism in debian/rules (closes: #478380) -- Peter Eisentraut Mon, 26 May 2008 16:43:17 +0200 fluidsynth (1.0.8-1) unstable; urgency=low * New upstream release (closes: #467431, #364355) * debian/control - added myself as Uploader - added Vcs-Browser Vcs-Svn and Homepage fields - recommend qsynth (closes: #462287) -- Free Ekanayaka Mon, 14 Apr 2008 15:59:30 +0100 fluidsynth (1.0.7a-1) unstable; urgency=low [ Eric Van Buggenhaut ] * New upstream release * stop Build-Depending on automake (closes: #380717) [ root ] * GNU config automated update: config.sub (20050602 to 20060223), config.guess (20050527 to 20060223) -- Eric Van Buggenhaut Wed, 2 Aug 2006 19:36:08 +0200 fluidsynth (1.0.6-5) unstable; urgency=low [ Eric Van Buggenhaut ] * Added some dependencies to libfluidsynth-dev (closes: #376844) [ root ] * GNU config automated update: config.sub (20050708 to 20060223), config.guess (20050803 to 20060223) -- Eric Van Buggenhaut Fri, 7 Jul 2006 01:27:46 +0200 fluidsynth (1.0.6-4) unstable; urgency=low [ Eric Van Buggenhaut ] * Fixed various dependencies (closes: #339622) [ root ] * GNU config automated update: config.sub (20050422 to 20050708), config.guess (20050422 to 20050803) -- Eric Van Buggenhaut Fri, 18 Nov 2005 03:28:46 +0100 fluidsynth (1.0.6-3) unstable; urgency=low * Update build dependencies to libreadline5-dev (closes: #326336) -- Eric Van Buggenhaut Sat, 3 Sep 2005 00:57:56 +0200 fluidsynth (1.0.6-2) unstable; urgency=low * Added ALSA support (closes: #317085) -- Eric Van Buggenhaut Wed, 6 Jul 2005 19:13:43 +0200 fluidsynth (1.0.6-1) unstable; urgency=low * New upstream release * Build against libjack-0.100.0-dev * GNU config automated update: config.sub (20040312 to 20050422), config.guess (20040312 to 20050422) -- Eric Van Buggenhaut Sat, 2 Jul 2005 16:21:14 +0200 fluidsynth (1.0.5-2) unstable; urgency=low * Re-applied A. Jochens' patch for amd64 (closes: #289146) * GNU config automated update: config.sub (20040624 to 20041130), config.guess (20040813 to 20041112) -- Eric Van Buggenhaut Mon, 10 Jan 2005 13:41:29 +0100 fluidsynth (1.0.5-1) unstable; urgency=low * New upstream release * now builds on amd64 (closes: #285951) -- Eric Van Buggenhaut Thu, 16 Dec 2004 19:01:19 +0100 fluidsynth (1.0.4-2-1) unstable; urgency=low * New upstream release * GNU config automated update: config.sub (20040105 to 20040624), config.guess (20040105 to 20040719) -- Eric Van Buggenhaut Tue, 17 Aug 2004 03:13:42 +0200 fluidsynth (1.0.3-6) unstable; urgency=low * Included examples for the use of the library (closes: #252037) -- Eric Van Buggenhaut Tue, 1 Jun 2004 11:16:12 +0200 fluidsynth (1.0.3-5) unstable; urgency=low * debian/control: Make dev package strictly depend on corresponding version of the runtime library package.(kobras@debian.org) * debian/control: Disambiguate short descriptions of lib and dev package. (kobras@debian.org) * fix RPATH problems (closes: #229056) (kobras@debian.org) -- Eric Van Buggenhaut Sat, 24 Jan 2004 13:16:29 +0100 fluidsynth (1.0.3-4) unstable; urgency=low * Rebuild against ladcca2 and jack0.80.0 (closes: #228348) -- Eric Van Buggenhaut Wed, 21 Jan 2004 14:44:17 +0100 fluidsynth (1.0.3-3) unstable; urgency=low * Disabled LADSPA support (closes: #226257) -- Eric Van Buggenhaut Tue, 6 Jan 2004 00:26:47 +0100 fluidsynth (1.0.3-2) unstable; urgency=low * Building against ladcca-dev 0.3.2-1 -- Eric Van Buggenhaut Tue, 21 Oct 2003 12:47:16 +0200 fluidsynth (1.0.3-1) unstable; urgency=low * New upstream release -- Eric Van Buggenhaut Mon, 1 Sep 2003 00:27:58 +0200 fluidsynth (1.0.2-2) unstable; urgency=low * Added LADSPA support * Removed buggy /usr/lib/pkggconfig dir -- Eric Van Buggenhaut Sun, 24 Aug 2003 12:54:31 +0200 fluidsynth (1.0.2-1) unstable; urgency=low * New upstream release * Removed build-dep on automake. We now run automake on the unpacked source tree and then ship the changed Makefile.in's in the diff.gz. -- Eric Van Buggenhaut Sun, 24 Aug 2003 02:26:38 +0200 fluidsynth (1.0.1-7) unstable; urgency=low * Removed build-dep on automake1.5 (closes: #205983) -- Eric Van Buggenhaut Mon, 18 Aug 2003 23:55:49 +0200 fluidsynth (1.0.1-6) unstable; urgency=low * -dev now includes fluidsynth.pc (closes: #202297) -- Eric Van Buggenhaut Sat, 9 Aug 2003 04:42:31 +0200 fluidsynth (1.0.1-5) unstable; urgency=low * corrected rpath (closes: #204025) * libfluidsynth-dev also depends on libncurses5-dev and libreadline4-dev (closes: #202561) * Updated to last version of Debian Policy -- Eric Van Buggenhaut Tue, 5 Aug 2003 01:08:20 +0200 fluidsynth (1.0.1-4) unstable; urgency=low * Recompiled against libjack-0.71.2 -- Eric Van Buggenhaut Fri, 13 Jun 2003 19:26:43 +0200 fluidsynth (1.0.1-3) unstable; urgency=low * Patched upstream code, in order to compile on non-i386 arches. -- Eric Van Buggenhaut Tue, 29 Apr 2003 02:54:51 +0200 fluidsynth (1.0.1-2) unstable; urgency=low * Innstall header files into /usr/include (closes: #190846) * libfluidsynth and libfluidsynth-dev needn't replace: and conflicts: libiiwusynth and libiiwusynth-dev -- Eric Van Buggenhaut Sat, 26 Apr 2003 23:40:47 +0200 fluidsynth (1.0.1-1) unstable; urgency=low * Initial Release. -- Eric Van Buggenhaut Mon, 14 Apr 2003 02:10:02 +0200 debian/gbp.conf0000644000000000000000000000006212017135074010603 0ustar [DEFAULT] pristine-tar = True compression = bzip2 debian/copyright0000644000000000000000000000572212103213441011116 0ustar This package was debianized by Eric Van Buggenhaut on Mon, 14 Apr 2003 02:10:02 +0200. Current maintainer is David Henningsson . It was downloaded from http://fluidsynth.resonance.org Copyright notices: ./src/fluid_chorus.c: Copyright © 1998 Juergen Mueller And Sundry Contributors This source code is freely redistributable and may be used for any purpose. This copyright notice must be maintained. Juergen Mueller And Sundry Contributors are not responsible for the consequences of using this software. ./src/fluid_list.c, ./src/fluid_hash.c, ./src/fluid_list.h, ./src/fluid_hash.h: GLIB - Library of useful routines for C programming Copyright © 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. ./src/fluid_defsfont.c: Copyright © 2003 Peter Hanappe and others. SoundFont file loading code borrowed from Smurf SoundFont Editor Copyright © 1999-2001 Josh Green This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. ./src/bindings/fluid_rtkit.*: Copyright 2009 Lennart Poettering Copyright 2010 David Henningsson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. other source files: Copyright © 2000-2006 Peter Hanappe and others. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. On Debian Systems, a copy of the LGPL version 2 can be found in /usr/share/common-licenses/LGPL-2 debian/libfluidsynth1.install0000644000000000000000000000003512103213441013504 0ustar usr/lib/*/libfluidsynth.so.* debian/fluidsynth.install0000644000000000000000000000003212103213441012731 0ustar usr/bin/* usr/share/man/* debian/source/0000755000000000000000000000000012017135074010466 5ustar debian/source/format0000644000000000000000000000001412017135074011674 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000007512017135074010221 0ustar version=3 http://sf.net/fluidsynth/fluidsynth-(.*)\.tar\.bz2