freebsd-ports/databases/erlfdb/Makefile
Mateusz Piotrowski 013945e73d Only pass -E to find(1) when passing -regex or -iregex
The -E flag tells find(1) to interpret regular expressions which were
passed as arguments to -regex and -iregex as extended regular expressions.
It has no effect on other otherwise. Let's not invoke find(1) with -E if
not necessary.

Approved by:	portmgr (blanket approval)
2020-08-12 13:34:57 +00:00

24 lines
444 B
Makefile

# $FreeBSD$
PORTNAME= erlfdb
DISTVERSIONPREFIX= v
DISTVERSION= 1.2.2
CATEGORIES= databases
MAINTAINER= dch@FreeBSD.org
COMMENT= FoundationDB client in Erlang via FDB C bindings
LICENSE= APACHE20
LIB_DEPENDS= libfdb_c.so:databases/foundationdb
USES= erlang:rebar
USE_GITHUB= yes
GH_ACCOUNT= apache
GH_PROJECT= couchdb-${PORTNAME}
post-install:
@${FIND} ${STAGEDIR} -type f -name *.so \
-exec ${STRIP_CMD} {} +
.include <bsd.port.mk>