Difference between revisions of "Dialog"

From CBLFS
Jump to navigationJump to search
Line 17: Line 17:
 
Compile the package:
 
Compile the package:
 
   
 
   
./configure --prefix=/usr --with-ncurses
 
 
  make
 
  make
  
Line 30: Line 29:
 
Compile the package:
 
Compile the package:
 
   
 
   
  CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
+
  make CC="gcc ${BUILD32}"
./configure --prefix=/usr --with-ncurses
 
make
 
  
 
Install the package:
 
Install the package:
Line 40: Line 37:
 
=== N32 ===
 
=== N32 ===
  
TO DO!
+
Compile the package:
 +
 
 +
make CC="gcc ${BUILDN32}" LIBDIR=/usr/lib32
 +
 
 +
Install the package:
 +
 
 +
make LIBDIR=/usr/lib32 install
  
 
=== 64Bit ===
 
=== 64Bit ===
  
 
Compile the package:
 
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 CC="gcc ${BUILD64}" LIBDIR=/usr/lib64
make
 
  
 
Install the package:
 
Install the package:
  
  make install
+
  make LIBDIR=/usr/lib64 install

Revision as of 18:26, 9 December 2007

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

Introduction to Dialog

Dialog is a utility to create nice user interfaces to shell scripts, or other scripting languages, such as perl. It is non-graphical (it uses curses) so it can be run in the console or an xterm.

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


Dependencies

Non-Multilib

Compile the package:

make

Install the package:

make install

Multilib

32Bit

Compile the package:

make CC="gcc ${BUILD32}"

Install the package:

make install

N32

Compile the package:

make CC="gcc ${BUILDN32}" LIBDIR=/usr/lib32

Install the package:

make LIBDIR=/usr/lib32 install

64Bit

Compile the package:

make CC="gcc ${BUILD64}" LIBDIR=/usr/lib64

Install the package:

make LIBDIR=/usr/lib64 install