blob: e51e682edf1da5e104b0d858d35a7c4347bbd657 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# $NetBSD: Makefile,v 1.17 2012/10/31 11:19:51 asau Exp $
DISTNAME= tre-0.8.0
CATEGORIES= devel
MASTER_SITES= http://laurikari.net/tre/
MAINTAINER= agc@NetBSD.org
HOMEPAGE= http://laurikari.net/tre/
COMMENT= Lightweight and robust POSIX compliant regexp matching library
LICENSE= modified-bsd
# both install bin/agrep (approx. grep)
CONFLICTS+= glimpse-[0-9]*
GNU_CONFIGURE= YES
USE_LIBTOOL= YES
CONFIGURE_ARGS+= --disable-system-abi
INSTALLATION_DIRS+= share/doc/tre
post-install:
${INSTALL_DATA} ${WRKSRC}/doc/tre-api.html ${DESTDIR}${PREFIX}/share/doc/tre/
${INSTALL_DATA} ${WRKSRC}/doc/tre-syntax.html ${DESTDIR}${PREFIX}/share/doc/tre/
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|