Apertium on openSUSE

From Apertium
Jump to navigation Jump to search

En français

Introduction[edit]

This note explains how to install the latest svn version of Apertium on a stock openSUSE 12.3 Milestone 1. Apertium is installed here into a directory in the user's homedir - in my case it was /home/kevin/downloads/linguistics, but it can be anything you choose. In this note, this choice will be referred to as [homedir].

(For general installation help, see Installation.)

Install required packages[edit]

If you choose the development pattern at or after your openSUSE install (using YaST, Smart, zypper or whatever), you will get most of the packages required for development, and may not have to add all of those listed below. Ensure that the following packages are present:

  • git
  • libxml2 and libxml2-devel
  • libxslt1 and libxslt-devel
  • libtool
  • libcpcre1 and pcre-devel
  • flex
  • make
  • automake
  • autoconf
  • gcc-c++

Download Apertium[edit]

Open a terminal, go to your [homedir] and checkout the latest version:

cd [homedir]
git clone https://github.com/apertium/apertium.git
git clone https://github.com/apertium/lttoolbox.git
git clone https://github.com/apertium/apertium-cy-en.git

You can replace cy-en by different language pair. For the list of language pairs go here.

Set up your install dirs[edit]

From [homedir]:

mkdir local

Install lttoolbox[edit]

From [homedir]:

cd lttoolbox/
./autogen.sh

Obviously, replace [homedir] here and in subsequent instances by your real path.

Set the local dir as part of the configure process:

./configure --prefix=[homedir]/local
make
make install

Your [homedir]/local dir should now contain four folders: bin, include, lib, and share.

Install apertium[edit]

We will set PKG_CONFIG_PATH as part of the configure process. We will also set up a library path to ensure Apertium can find the lttoolbox libraries we just built.


From [homedir]:

cd apertium
export LD_LIBRARY_PATH=[homedir]/local/lib
export PKG_CONFIG_PATH=[homedir]/local/lib/pkgconfig
export PATH=[homedir]/local/bin:$PATH
./autogen.sh 
./configure --prefix=[homedir]/local
make
make install

In case your architecture is x86_64, then you should check if there is directory lib or lib64, and if it is lib64, you have to do the follow instructions:

From [homedir]:

cd apertium
export LD_LIBRARY_PATH=[homedir]/local/lib64
export PKG_CONFIG_PATH=[homedir]/local/lib64/pkgconfig
export PATH=[homedir]/local/bin:$PATH
./autogen.sh 
./configure --prefix=[homedir]/local
make
make install

Your [homedir]/local/bin dir should now contain a number of apertium binaries.

Install VISL CG3[edit]

Apertium for Welsh now requires this constraint grammar package to help with disambiguation. For install instructions go here.

Tips: <prefix> - it must be [homedir]/local/

tmalloc is required, so you have to install also the last package.

The packages can have different names than in that instructions, for example: boost-devel instead of libboost-dev gperftools-devel instead of libgoogle-perftools-dev

Install language-pair data[edit]

In this instance we will install the cy-en (Welsh-English) pair. First, we need to ensure that the system can find the new Apertium binaries:

export PATH=[homedir]/local/bin:$PATH

(This can be made permanent later, by adding the path to ~/.bash_profile, or whatever is your preferred method for doing this.)

From [homedir] you go to directory with chosen language-pair.

Minimal installation:

cd apertium-cy-en


In this directory:

export LD_LIBRARY_PATH=[homedir]/local/lib
export PKG_CONFIG_PATH=[homedir]/local/lib/pkgconfig 
export PATH=[homedir]/local/bin:$PATH
./autogen.sh 
./configure --prefix=[homedir]/local
make
make install

In case your architecture is x86_64, then you should check if there is directory lib or lib64, and if it is lib64, you have to do the follow instructions in directory with choosen language-pair:

From [homedir]:

export LD_LIBRARY_PATH=[homedir]/local/lib64
export PKG_CONFIG_PATH=[homedir]/local/lib64/pkgconfig 
export PATH=[homedir]/local/bin:$PATH
./autogen.sh 
./configure --prefix=[homedir]/local
make
make install

Your [homedir]/local/share/apertium should now contain a new folder apertium-cy-en, and the modes folder should contain a file for the Welsh-English language direction (cy-en.mode).

Note that if you are using an AMD64 processor, you must use version 3.0.4 or above of Apertium. Versions below this have a bug which will mean the make fails.

Testing the new install[edit]

From [homedir]:

echo "prawf" | apertium cy-en

You should see test returned. Currently there is no English-Welsh direction.