Automoc4: Difference between revisions

From CBLFS
Jump to navigationJump to search
Created page with '{| style="text-align: left; background-color: AliceBlue;" |-valign="top" !Download Source: | ftp://ftp.kde.org/pub/kde/stable/automoc4/{{Automoc4-Version}}/automoc4-{{Automoc4-Ve…'
 
No edit summary
Line 8: Line 8:


=== Required ===
=== Required ===
 
* [[KDE4/KDE Pre-Installation Configuration]]
* [[OpenSSL]]
* [[OpenSSL]]



Revision as of 04:52, 13 September 2009

Download Source: ftp://ftp.kde.org/pub/kde/stable/automoc4/0.9.88/automoc4-0.9.88.tar.bz2

Dependencies

Required

Non-Multilib

Compile the package:

mkdir -v build &&
cd build &&
cmake -DCMAKE_INSTALL_PREFIX=${KDEDIR} \
.. &&
make

Install the package:

make install

Multilib

32Bit

mkdir -v build &&
cd build &&
USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
cmake -DCMAKE_INSTALL_PREFIX=${KDEDIR} \
    .. &&
make

Install the Package

make install

N32

64Bit

mkdir -v build &&
cd build &&
USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
cmake -DCMAKE_INSTALL_PREFIX=${KDEDIR} \
    .. &&
make

Install the Package

make install