blob: 3aa56369580c4099f42352e643ebbd6df364c7c2 (
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.6 2001/06/29 23:02:11 zuntum Exp $
DISTNAME= rx-1.5
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU:=rx/}
MAINTAINER= jlam@netbsd.org
HOMEPAGE= http://www.gnu.org/software/rx/rx.html
COMMENT= Fast replacement for the GNU regex library
USE_BUILDLINK_ONLY= YES
USE_LIBTOOL= # defined
GNU_CONFIGURE= # defined
INFO_FILES= rx.info
# When the API changes and breaks binary-compatibility with the previous
# version, increment the MAJOR by 1 and reset the MINOR to 0. Otherwise,
# bump the MINOR when a new version comes out.
#
RX_MAJOR= 0
RX_MINOR= 0
MAKE_ENV+= RX_MAJOR="${RX_MAJOR}" RX_MINOR="${RX_MINOR}"
post-install:
cd ${WRKSRC}/doc; ${INSTALL_DATA} ${INFO_FILES} ${PREFIX}/info
.include "../../mk/bsd.pkg.mk"
|