ports/sysutils/ugrep/Makefile

36 lines
660 B
Makefile
Raw Normal View History

2023-08-16 22:26:55 +00:00
COMMENT = ultra fast universal grep
CATEGORIES = sysutils
GH_ACCOUNT = Genivia
GH_PROJECT = ugrep
2023-08-28 01:43:33 +00:00
GH_TAGNAME = v4.0.4
2023-08-16 22:26:55 +00:00
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
# BSD
PERMIT_PACKAGE = Yes
WANTLIB += ${COMPILER_LIBCXX} bz2 c lz4 lzma m pcre2-8 z zstd
# C++11
COMPILER = base-clang ports-gcc
LIB_DEPENDS = archivers/lz4 \
archivers/xz \
archivers/zstd \
devel/pcre2
CONFIGURE_STYLE = gnu
CONFIGURE_ARGS = --disable-avx \
--disable-neon \
--without-boost-regex
# All amd64 machines support SSE2, but the same is not true of i386
.if ${MACHINE_ARCH:Mi386}
CONFIGURE_ARGS += --disable-sse2
.endif
USE_GMAKE = Yes
.include <bsd.port.mk>