Timidity

From CBLFS
Revision as of 14:34, 6 November 2006 by Jciccone (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
Download Source: http://prdownloads.sourceforge.net/timidity/TiMidity%2B%2B-2.13.2.tar.bz2

Dependencies

Optional

Configuration Information

If you would like to build against an X Window System, pass the following to configure:

--with-x

If you would like to build Timidity++ against S-Lang pass the following to configure:

--enable-slang

If you would like to build against motif, pass the following to configure:

--enable-motif

If you would like to build the TCLTk interface pass the following to configure:

--enable-tcltk

If you would like to build against Gtk2 pass the following to configure:

--enable-gtk

You can also pass

--enable-audio=oss,alsa,nas,arts,esd,jack,ao,vorbis,flack,speex

These are only a few of the flags you _can_ use, see ./configure --help for more information.

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" USE_ARCH=32 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" USE_ARCH=n32 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr --libdir=/usr/lib32 \
    --with-moduledir=/usr/lib32/timidity &&
make

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" USE_ARCH=64 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 \
    --with-moduledir=/usr/lib64/timidity &&
make

Install the package

make install