JACK: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
Weibullguy (talk | contribs) Uuuhhhh...you can add the option, but why would you if you don't need to? |
||
| Line 15: | Line 15: | ||
== Non-Multilib == | == Non-Multilib == | ||
Compile the package: | Compile the package: | ||
| Line 68: | Line 66: | ||
== Contents == | == Contents == | ||
{| style="text-align: left;" | |||
|-valign="top" | |||
!Installed Directories: | |||
|None | |||
|-valign="top" | |||
!Installed Programs: | |||
|jack_midiseq, jack_midisine, jack_freewheel, jack_lsp, jack_bufsize, jack_showtime, jack_metro, jack_disconnect, jack_connect, jack_impulse_grabber, jack_monitor_client, jack_simple_client, jack_unload, jack_load, jackd | |||
|-valign="top" | |||
!Installed Libraries: | |||
|intime.{la,so}, inprocess.{la,so}, jack_oss.{la,so}, jack_dummy.{la,so}, jack_alsa.{la,so}, libjack.{la,so} | |||
|} | |||
Revision as of 08:18, 3 October 2007
| Download Source: | http://prdownloads.sourceforge.net/jackit/jack-audio-connection-kit-0.109.2.tar.gz |
|---|
Introduction to JACK
JACK is a low-latency audio server, written for POSIX conformant operating systems such as GNU/Linux and Apple's OS X. It can connect a number of different applications to an audio device, as well as allowing them to share audio between themselves.
Project Homepage: http://jackaudio.org/
Dependencies
Required
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr --build=${CLFS_TARGET32} &&
make
Install the package
make install
N32
Compile the package:
sed -i "/libnn=/s/lib64/lib32/" configure &&
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr --libdir=/usr/lib32 &&
make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make
Install the package
make install
Contents
| Installed Directories: | None |
|---|---|
| Installed Programs: | jack_midiseq, jack_midisine, jack_freewheel, jack_lsp, jack_bufsize, jack_showtime, jack_metro, jack_disconnect, jack_connect, jack_impulse_grabber, jack_monitor_client, jack_simple_client, jack_unload, jack_load, jackd |
| Installed Libraries: | intime.{la,so}, inprocess.{la,so}, jack_oss.{la,so}, jack_dummy.{la,so}, jack_alsa.{la,so}, libjack.{la,so} |