FriBidi: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
Gcb (talk | contribs)
m package no longer provides fribidi-config file - employs pkgconfig instead
Line 28: Line 28:
Compile the package:
Compile the package:


  CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
  CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" ./configure --prefix=/usr &&
  make
  make


Install the package
Install the package


  make install &&
  make install
  mv -v /usr/bin/fribidi-config{,-32}
   


=== N32 ===
=== N32 ===
Line 40: Line 40:
Compile the package:
Compile the package:


  CC="gcc ${BUILDN32}" ./configure --prefix=/usr \
  CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" ./configure --prefix=/usr \
     --libdir=/usr/lib32 &&
     --libdir=/usr/lib32 &&
  make
  make
Line 46: Line 46:
Install the package
Install the package


  make install &&
  make install  
mv -v /usr/bin/fribidi-config{,-n32}


=== 64Bit ===
=== 64Bit ===
Line 53: Line 52:
Compile the package:
Compile the package:


  CC="gcc ${BUILD64}" ./configure --prefix=/usr \
  CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" ./configure --prefix=/usr \
     --libdir=/usr/lib64 &&
     --libdir=/usr/lib64 &&
  make
  make
Line 59: Line 58:
Install the package
Install the package


  make install &&
  make install  
mv -v /usr/bin/fribidi-config{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/fribidi-config


= Contents =
= Contents =
Line 68: Line 65:
|-valign="top"
|-valign="top"
! Installed Programs:
! Installed Programs:
| fribidi and fribidi-config
| fribidi
|-valign="top"
|-valign="top"
! Installed Libraries:
! Installed Libraries:
Line 83: Line 80:
! fribidi
! fribidi
| is a command-line interface to the libfribidi library and can be used to convert a logical string to visual output.
| is a command-line interface to the libfribidi library and can be used to convert a logical string to visual output.
|-valign="top"
! fribidi-config
| is used to acquire information about the installed libfribidi library.
|-valign="top"
|-valign="top"
! libfribidi.{so,a}
! libfribidi.{so,a}

Revision as of 21:48, 24 June 2009

Download Source: http://fribidi.org/download/fribidi-0.19.2.tar.gz

Introduction to FriBidi

Project Homepage: Unknown

Dependencies

Non-Multilib

Compile the package:

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

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" ./configure --prefix=/usr &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" ./configure --prefix=/usr \
    --libdir=/usr/lib32 &&
make

Install the package

make install 

64Bit

Compile the package:

CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" ./configure --prefix=/usr \
    --libdir=/usr/lib64 &&
make

Install the package

make install 

Contents

Installed Programs: fribidi
Installed Libraries: libfribidi.{so,a}
Installed Directories: /usr/include/fribidi

Short Descriptions

fribidi is a command-line interface to the libfribidi library and can be used to convert a logical string to visual output.
libfribidi.{so,a} contains functions used to implement the Unicode Bidirectional Algorithm.