diff options
author | jlam <jlam@pkgsrc.org> | 2000-01-17 03:44:27 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2000-01-17 03:44:27 +0000 |
commit | fbe120b3580d01cb9ee415b356e6f4cdcbc58ef1 (patch) | |
tree | e8044dc2cb95982f355a567baaf047a583844e63 /devel/rx/Makefile | |
parent | 2869c7e36693da6a695d1e8f0948d29dd3461bb0 (diff) | |
download | pkgsrc-fbe120b3580d01cb9ee415b356e6f4cdcbc58ef1.tar.gz |
rx 1.5 - Fast replacement for the GNU regexp library
Diffstat (limited to 'devel/rx/Makefile')
-rw-r--r-- | devel/rx/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/devel/rx/Makefile b/devel/rx/Makefile new file mode 100644 index 00000000000..00b4d008382 --- /dev/null +++ b/devel/rx/Makefile @@ -0,0 +1,28 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/01/17 03:44:27 jlam 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 + +USE_LIBTOOL= yes +GNU_CONFIGURE= yes + +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}" + +ALL_TARGET= all info + +post-install: + cd ${WRKSRC}/doc; ${INSTALL_DATA} ${INFO_FILES} ${PREFIX}/info + +.include "../../mk/bsd.pkg.mk" |