mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
0a9f8dd1df
Approved by: portmgr (erwin)
41 lines
862 B
Makefile
41 lines
862 B
Makefile
# New ports collection makefile for: Ruby/amatch
|
|
# Date created: 10 November 2002
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= amatch
|
|
PORTVERSION= 0.2.2
|
|
CATEGORIES= textproc ruby
|
|
MASTER_SITES= ${MASTER_SITE_RUBYFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
EXTRACT_SUFX= .tgz
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A Ruby library for approximate string matching and searching
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBY_SETUP= yes
|
|
RUBY_SETUP= install.rb
|
|
|
|
INSTALL_TARGET= site-install
|
|
|
|
PLIST_FILES= bin/agrep.rb %%RUBY_SITEARCHLIBDIR%%/amatch.so
|
|
DOCSDIR= ${RUBY_MODDOCDIR}
|
|
PORTDOCS= CHANGES README.en
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|