XDaliClock: Difference between revisions

From CBLFS
Jump to navigationJump to search
Spyro (talk | contribs)
No edit summary
 
No edit summary
Line 8: Line 8:


== Dependencies ==
== Dependencies ==
=== Required ===
* [[X Window System]]


== Non-Multilib ==
== Non-Multilib ==
Line 14: Line 17:


  cd X11/ &&
  cd X11/ &&
./configure --prefix=/usr &&
make
Install:
make install
== Multilib ==
'''''This package does not install any libraries so only one installation is needed.'''''
=== 32Bit ===
Compile the package:
cd X11/ &&
CC="gcc ${BUILD32}" USE_ARCH=32 \
./configure --prefix=/usr &&
make
Install:
make install
=== N32 ===
Compile the package:
cd X11/ &&
CC="gcc ${BUILDN32}" USE_ARCH=n32 \
./configure --prefix=/usr &&
make
Install:
make install
=== 64Bit ===
Compile the package:
cd X11/ &&
CC="gcc ${BUILD64}" USE_ARCH=64 \
  ./configure --prefix=/usr &&
  ./configure --prefix=/usr &&
  make
  make

Revision as of 10:33, 10 November 2006

Download Source: http://www.jwz.org/xdaliclock/xdaliclock-2.23.tar.gz

Dependencies

Required

Non-Multilib

Compile the package:

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

Install:

make install

Multilib

This package does not install any libraries so only one installation is needed.

32Bit

Compile the package:

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

Install:

make install

N32

Compile the package:

cd X11/ &&
CC="gcc ${BUILDN32}" USE_ARCH=n32 \
./configure --prefix=/usr &&
make

Install:

make install

64Bit

Compile the package:

cd X11/ &&
CC="gcc ${BUILD64}" USE_ARCH=64 \
./configure --prefix=/usr &&
make

Install:

make install