Difference between revisions of "Dialog"

From CBLFS
Jump to navigationJump to search
Line 1: Line 1:
32bit... Oppiz Clean
+
{| style="text-align: left; background-color: AliceBlue;"
 +
|-
 +
!Download Source:
 +
| http://hightek.org/dialog/dialog-0.7.tar.gz
 +
|}
 +
 
 +
----
 +
 
 +
Homepage: http://hightek.org/dialog/
 +
 
 +
== Dependencies ==
 +
 
 +
 
 +
== Non-Multilib ==
 +
 
 +
Compile the package:
 +
 +
./configure --prefix=/usr --with-ncurses
 +
make
 +
 
 +
Install the package:
 +
 
 +
make install
 +
 
 +
== Multilib ==
 +
 
 +
=== 32Bit ===
 +
 
 +
Compile the package:
 +
 +
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
 +
./configure --prefix=/usr --with-ncurses
 +
make
 +
 
 +
Install the package:
 +
 
 +
make install
 +
 
 +
=== N32 ===
 +
 
 +
TO DO!
 +
 
 +
=== 64Bit ===
 +
 
 +
Compile the package:
 +
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
 +
./configure --prefix=/usr --libdir=/usr/lib64 --with-ncurses
 +
make
 +
 
 +
Install the package:
 +
 
 +
make install
 +
 
  
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" ./configure    --prefix=/usr --with-ncurses
 
  
64bit... Oppiz Clean
+
32bit... Oppiz Clean
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" ./configure    --prefix=/usr --libdir=/usr/lib64 --with-ncurses
 

Revision as of 01:47, 26 April 2007

Download Source: http://hightek.org/dialog/dialog-0.7.tar.gz

Homepage: http://hightek.org/dialog/

Dependencies

Non-Multilib

Compile the package:

./configure --prefix=/usr --with-ncurses
make

Install the package:

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr --with-ncurses
make

Install the package:

make install

N32

TO DO!

64Bit

Compile the package:

CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 --with-ncurses
make

Install the package:

make install


32bit... Oppiz Clean