Difference between revisions of "Gucharmap"

From CBLFS
Jump to navigationJump to search
(Multilib)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://ftp.gnome.org/pub/gnome/sources/gucharmap/1.8/gucharmap-1.8.0.tar.bz2
+
| http://ftp.gnome.org/pub/gnome/sources/gucharmap/{{Gucharmap-Version2}}/gucharmap-{{Gucharmap-Version}}.tar.bz2
 
|}
 
|}
  

Revision as of 20:14, 17 December 2006

Download Source: http://ftp.gnome.org/pub/gnome/sources/gucharmap/2.28/gucharmap-2.28.0.tar.bz2

Dependencies

Required

Optional

Non-Multilib

Compile the package:

./configure --prefix=${GNOME_PREFIX} \
    --localstatedir=/var/lib &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" &&
CC="gcc ${BUILD32}" \
./configure --prefix=${GNOME_PREFIX} \
    --localstatedir=/var/lib &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH

N32

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" &&
CC="gcc ${BUILDN32}" \
./configure --prefix=${GNOME_PREFIX} \
    --libdir=${GNOME_PREFIX}/lib32 \
    --localstatedir=/var/lib &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH

64Bit

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" &&
CC="gcc ${BUILD64}" \
./configure --prefix=${GNOME_PREFIX} \
    --libdir=${GNOME_PREFIX}/lib64 \
    --localstatedir=/var/lib &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH