blob: 35e037db1ac4443550f99cccd98cd07189fde1d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $NetBSD: Makefile,v 1.4 2005/11/03 05:59:14 taca Exp $
DISTNAME= RedCloth-${VERSION}
PKGNAME= ${RUBY_PKGPREFIX}-redcloth-${VERSION}
CATEGORIES= textproc
MASTER_SITES= http://rubyforge.org/frs/download.php/6064/
MAINTAINER= rasputnik@hellooperator.net
HOMEPAGE= http://www.whytheluckystiff.net/ruby/redcloth/
COMMENT= Textile library for Ruby
VERSION= 3.0.4
USE_RUBY_SETUP= yes
DOCS= CHANGELOG README REFERENCE
post-install:
${INSTALL_DATA_DIR} ${RUBY_DOCDIR}/redcloth
.for f in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/doc/${f} ${RUBY_DOCDIR}/redcloth
.endfor
.include "../../lang/ruby/modules.mk"
.include "../../mk/bsd.pkg.mk"
|