[SCM] calf/master: + Fixed(?) compile options + Added README

js at users.alioth.debian.org js at users.alioth.debian.org
Tue May 7 15:36:45 UTC 2013


The following commit has been merged in the master branch:
commit 6e37a725933cc9924f94cb1c7e9b5c8d32ae3c53
Author: kfoltman <kfoltman at 78b06b96-2940-0410-b7fc-879d825d01d8>
Date:   Sun Dec 16 16:22:14 2007 +0000

    + Fixed(?) compile options
    + Added README
    
    
    
    git-svn-id: https://calf.svn.sourceforge.net/svnroot/calf/trunk@25 78b06b96-2940-0410-b7fc-879d825d01d8

diff --git a/README b/README
index e69de29..dd4624a 100644
--- a/README
+++ b/README
@@ -0,0 +1,30 @@
+How to use Calf plugins:
+
+* LADSPA plugins
+
+Calf is installed as calf.so library in your LADSPA directory (typically
+/usr/lib/ladspa). It means that typical LADSPA host should be able to find
+Calf's plugins.
+
+* DSSI plugins
+
+Calf .so module is also installed in your DSSI plugin directory, which means
+your DSSI host (like jack-dssi-host or rosegarden) should find it and
+include its plugins in the plugin list. 
+
+* JACK client application
+
+You can also use Calf plugins as separate applications, connecting to other
+applications using JACK Audio Connection Kit (version 0.103 or newer is
+required). To run the client, type:
+
+        calfjackhost -p monosynth
+
+Instead of monosynth, you can also select flanger, reverb or filter.
+
+You can also change client name or input/output port names with command-line
+options (type calfjackhost --help). Use qjackctl, patchage or jack_connect
+to connect the Calf JACK client to your sound card or other applications.
+
+Keep in mind this project is in the early development phase. It is usable
+for certain purposes, but drop me a note if you need something.
diff --git a/src/Makefile.am b/src/Makefile.am
index f32862b..82dd7da 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -14,7 +14,7 @@ noinst_LTLIBRARIES = libcalf.la libcalfstatic.la libcalfgui.la
 AM_CXXFLAGS = -ffast-math -march=i686 -finline-limit=80
 
 if USE_JACK
-AM_CXXFLAGS += -DUSE_JACK=1 $(JACK_DEPS_CFLAGS)
+AM_CXXFLAGS += -DUSE_JACK=1 $(JACK_DEPS_CFLAGS) $(GUI_DEPS_CFLAGS)
 bin_PROGRAMS += calfjackhost 
 calfjackhost_SOURCES = jackhost.cpp
 calfjackhost_LDADD = libcalfstatic.la libcalfgui.la $(JACK_DEPS_LIBS) $(GUI_DEPS_LIBS)

-- 
calf audio plugins packaging



More information about the pkg-multimedia-commits mailing list