blob: 7c2f5fa6ec6bcf12fe298c8630cabf0187f6da4a (
plain) (
blame)
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
29
30
31
32
33
34
35
36
37
38
39
40
|
# 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.3
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>
|