mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
1683d870a0
splitting, matching. It is independent from the Str library, and can replace Str in many cases. Unlike Str, xstr is thread-safe. xstr does not implement regular expressions in general, but an important subset. Some operations of xstr are performed as quickly as by Str; if the string to be processed is small, xstr is often faster than Str; if the string is big, xstr is upto half as fast than Str. Author: Gerd Stolpmann <gerd@gerd-stolpmann.de> WWW: http://www.ocaml-programming.de/packages/ PR: ports/101032 Submitted by: Stanislav Sedov <ssedov at mbsd.msk.ru>
26 lines
567 B
Makefile
26 lines
567 B
Makefile
# New ports collection makefile for: ocaml-xstr
|
|
# Date created: 2006-07-29
|
|
# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru>
|
|
#
|
|
# $MBSDlabs$
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xstr
|
|
PORTVERSION= 0.2.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.ocaml-programming.de/packages/
|
|
PKGNAMEPREFIX= ocaml-
|
|
|
|
MAINTAINER= ssedov@mbsd.msk.ru
|
|
COMMENT= Thread-safe implementation of string searching/matching
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
USE_GMAKE= yes
|
|
USE_OCAML= yes
|
|
USE_OCAML_FINDLIB=yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "${PORTSDIR}/lang/ocaml/bsd.ocaml.mk"
|
|
.include <bsd.port.post.mk>
|