Tre: Difference between revisions
From CBLFS
Jump to navigationJump to search
Weibullguy (talk | contribs) mNo edit summary |
No edit summary |
||
| Line 77: | Line 77: | ||
|prints lines approximately matching a pattern. | |prints lines approximately matching a pattern. | ||
|} | |} | ||
[[Category:General Utilities]] | |||
Latest revision as of 14:05, 19 March 2009
| Download Source: | http://www.laurikari.net/tre/tre-0.7.5.tar.bz2 |
|---|
Introduction to Tre
TRE is a lightweight, robust, and efficient POSIX compliant regexp matching library with some exciting features such as approximate (fuzzy) matching
Project Homepage: http://www.laurikari.net/tre/index.html
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: | agrep |
|---|---|
| Installed Libraries: | libtre.{a,so} |
Short Descriptions
| agrep | prints lines approximately matching a pattern. |
|---|