fribidi - A free implementation of the Unicode Bidirectional Algorithm (BiDi) ChangeLog

HOWTO


# GNU FriBidi 0.10.9
# ==================
# Apps that I know of that use fribidi: abiword, dvdauthor
# For a list of others go here

# Slackware 9.1, 10.0, and 10.1's 'abiword' packages include FriBidi version
# 0.10.4, 10.2's includes 0.10.5, and 11.0 and 12.0's include 0.10.7

# Prerequisites:
# pkg-config

cd
test -f installed/fribidi-0.10.9.tar.gz &&
mv installed/fribidi-0.10.9.tar.gz .
test ! -f fribidi-0.10.9.tar.gz &&
wget http://fribidi.org/download/fribidi-0.10.9.tar.gz

# Verify tarball w/ md5sum:
echo "647aee89079b056269ff0918dc1c6d28  fribidi-0.10.9.tar.gz" | md5sum -c

mkdir -p -m 0700 src
cd src
find -maxdepth 1 -type d -name "fribidi-*" -exec rm -r {} \;
tar xzvf ~/fribidi-0.10.9.tar.gz
cd fribidi-0.10.9
test $UID = 0 && chown -R root:root .
./configure
make
make check

# Become root to install it
su

# Remove old library files, install it
rm -f /usr/local/lib/libfribidi.*
make install
ldconfig

# Make sure your non-root user can remove the source later
chown -R $USER .
chmod -R u+w .

# Become yourself again
exit

cd
mkdir -p -m 0700 installed
rm -f installed/fribidi-*.tar.*
mv fribidi-0.10.9.tar.gz installed/

List of HOWTOs

Web page itself last updated: 2023-12-20 8:06pm (EDT -0400)
HOWTO last updated: 2008-04-10 12:40am
Copyright © 2001-2024 Jason Englander. All Rights reserved.
[HTML5]