freebsd-ports/devel/libac/pkg-descr
Stefan Eßer fb16dfecae Remove WWW entries moved into port Makefiles
Commit b7f05445c0 has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
2022-09-07 23:58:51 +02:00

10 lines
447 B
Plaintext

This port is the C++ implementation of the Aho-Corasick (AC) string matching
algorithm.
The upstream began with pure Lua implementation and realize the performance is
not satisfactory. So they switch to C/C++ implementation.
There are two shared objects provided by this package: libac.so and
ahocorasick.so The former is a regular shared object which can be directly used
by C/C++ application, or by Lua via FFI; and the later is a Lua module.