Difference between revisions of "Akode"
From CBLFS
Jump to navigationJump to search (→32Bit) |
m |
||
(2 intermediate revisions by one other user not shown) | |||
Line 6: | Line 6: | ||
---- | ---- | ||
+ | |||
+ | {{Package-Introduction|aKode is a simple audio-decoding frame-work that provides a uniform interface to decode the most common audio-formats. It also has a direct playback option for a number of audio-outputs.|http://www.carewolf.com/akode/}} | ||
== Dependencies == | == Dependencies == | ||
Line 17: | Line 19: | ||
* [[libvorbis]] | * [[libvorbis]] | ||
* [[Secret Rabbit Code]] | * [[Secret Rabbit Code]] | ||
− | * [[ | + | * [[PulseAudio]] |
* [[JACK]] | * [[JACK]] | ||
* [[FFmpeg]] | * [[FFmpeg]] |
Latest revision as of 15:30, 23 June 2007
Download Source: | http://www.kde-apps.org/content/download.php?content=30375 |
---|
Contents
Introduction to Akode
aKode is a simple audio-decoding frame-work that provides a uniform interface to decode the most common audio-formats. It also has a direct playback option for a number of audio-outputs.
Project Homepage: http://www.carewolf.com/akode/
Dependencies
Optional
Non-Multilib
Compile the package:
./configure --prefix=$KDE_PREFIX \ --disable-debug --disable-dependency-tracking && make
Install the package
make install
Multilib
32Bit
Compile the package:
export USE_ARCH=32 && CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ ./configure --prefix=$KDE_PREFIX --disable-debug \ --disable-dependency-tracking --x-libraries=${XORG_PREFIX}/lib \ --with-qt-libraries=${QTDIR}/lib --enable-libsuffix=no && make
Install the package
make install && mv -v ${KDE_PREFIX}/bin/akode-config{,-32} && unset USE_ARCH
N32
Compile the package:
export USE_ARCH=n32 && CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ ./configure --prefix=$KDE_PREFIX --libdir=${KDE_PREFIX}/lib32 --disable-debug --disable-dependency-tracking --x-libraries=${XORG_PREFIX}/lib32 \ --with-qt-libraries=${QTDIR}/lib32 --enable-libsuffix=32 && make
Install the package
make install && mv -v ${KDE_PREFIX}/bin/akode-config{,-n32} && unset USE_ARCH
64Bit
Compile the package:
export USE_ARCH=64 && CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ ./configure --prefix=$KDE_PREFIX --libdir=${KDE_PREFIX}/lib64 \ --disable-debug --disable-dependency-tracking --x-libraries=${XORG_PREFIX}/lib64 \ --with-qt-libraries=${QTDIR}/lib64 --enable-libsuffix=64 && make
Install the package
make install && mv -v ${KDE_PREFIX}/bin/akode-config{,-64} && ln -sfv /usr/bin/multiarch_wrapper ${KDE_PREFIX}/bin/akode-config && unset USE_ARCH