889ce9a218
-------------------------------- 0.3.4 2017-04-04 - bumped version number to 0.3.4, added credits 0.3.3 2016-09-15 - development of building infrastructure, better selection of C++11 0.3.2 2016-09-14 - udpated installation infrastructure to work with recent revision of re2 under the autotools 0.3.1 2016-03-18 - bumped version number to 0.3.1 0.3.0 2016-03-17 - bumped version number to 0.3.0 0.2.0 2016-02-16 - documentation review
27 lines
661 B
Makefile
27 lines
661 B
Makefile
# $NetBSD: Makefile,v 1.6 2017/05/07 03:13:24 mef Exp $
|
|
|
|
VERSION= 0.3.4
|
|
DISTNAME= cre2-${VERSION}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=marcomaggi/}
|
|
GITHUB_TAG= v${VERSION}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/google/re2
|
|
COMMENT= C wrapper for re2 regular expression library
|
|
LICENSE= modified-bsd
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-maintainer-mode
|
|
USE_LIBTOOL= yes
|
|
USE_LANGUAGES+= c c++
|
|
USE_TOOLS+= autoconf autoreconf automake gmake makeinfo
|
|
|
|
INFO_FILES= yes
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} sh ./autogen.sh
|
|
|
|
.include "../../devel/re2/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|