Tre: Difference between revisions
From CBLFS
Jump to navigationJump to search
New page: {| style="text-align: left; background-color: AliceBlue;" |- !Download Source: | http://www.laurikari.net/tre/tre-0.7.5.tar.bz2 |} ---- {{Package-Introduction|TRE is a lightweight, robus... |
No edit summary |
||
| (One intermediate revision by one other user not shown) | |||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| http://www.laurikari.net/tre/tre- | | http://www.laurikari.net/tre/tre-{{Tre-Version}}.tar.bz2 | ||
|} | |} | ||
| 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. |
|---|