openbsd-ports/devel/libguess/Makefile
shadchin a54ac523ea Import libguess-1.0
libguess employs discrete-finite automata to deduce the character set of
the input buffer. The advantage of this is that all character sets can
be checked in parallel, and quickly. Right now, libguess passes a byte
to each DFA on the same pass, meaning that the winning character set can
be deduced as efficiently as possible.

ok jasper@
2010-12-11 11:03:22 +00:00

36 lines
650 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2010/12/11 11:03:22 shadchin Exp $
SHARED_ONLY = Yes
COMMENT = high-speed character set detection library
DISTNAME = libguess-1.0
SHARED_LIBS = guess 0.0 # 1.0
CATEGORIES = devel
HOMEPAGE = http://www.atheme.org/project/libguess
# BSD
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
WANTLIB = mowgli
MASTER_SITES = http://distfiles.atheme.org/
EXTRACT_SUFX = .tgz
LIB_DEPENDS = devel/mowgli
MAKE_ENV = LIB_MAJOR=${LIBguess_VERSION:R} \
LIB_MINOR=${LIBguess_VERSION:E}
CONFIGURE_STYLE = gnu
NO_REGRESS = Yes
.include <bsd.port.mk>