1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00

Markaby is a templating language for Ruby, with a plugin for Rails,

which allows you to write HTML templates in pure-Ruby (a la Builder.)

WWW:	http://markaby.rubyforge.org/
This commit is contained in:
Martin Wilke 2008-12-28 16:08:38 +00:00
parent 1b017b8629
commit a508c630d7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=224903
4 changed files with 39 additions and 0 deletions

View File

@ -962,6 +962,7 @@
SUBDIR += rubygem-formosa
SUBDIR += rubygem-htmltools
SUBDIR += rubygem-ini
SUBDIR += rubygem-markaby
SUBDIR += rubygem-rak
SUBDIR += rubygem-rdiscount
SUBDIR += rubygem-spreadsheet

View File

@ -0,0 +1,31 @@
# New ports collection makefile for: rubygem-markaby
# Date created: 28, Dec 2008
# Whom: Martin Wilke <miwi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= markaby
PORTVERSION= 0.5
CATEGORIES= textproc rubygems
MASTER_SITES= RF
MAINTAINER= miwi@FreeBSD.org
COMMENT= HTML Markup as Ruby
BUILD_DEPENDS= rubygem-builder>0:${PORTSDIR}/devel/rubygem-builder
RUN_DEPENDS= rubygem-builder>0:${PORTSDIR}/devel/rubygem-builder
USE_RUBY= yes
USE_RUBYGEMS= yes
USE_RAKE= yes
post-install:
@${ECHO} ${GEM_CACHE} > ${TMPPLIST}
@${FIND} ${PREFIX}/${GEM_DOC_DIR} -type f | ${SED} -e 's,${PREFIX}/${GEM_DOC_DIR},${GEM_DOC_DIR},' >> ${TMPPLIST}
@${FIND} ${PREFIX}/${GEM_LIB_DIR} -type f | ${SED} -e 's,${PREFIX}/${GEM_LIB_DIR},${GEM_LIB_DIR},' >> ${TMPPLIST}
@${ECHO} ${GEM_SPEC} >> ${TMPPLIST}
@${FIND} ${PREFIX}/${GEM_LIB_DIR} -type d -depth | ${SED} -e 's,${PREFIX}/${GEM_LIB_DIR},@dirrm ${GEM_LIB_DIR},' >> ${TMPPLIST}
@${FIND} ${PREFIX}/${GEM_DOC_DIR} -type d -depth | ${SED} -e 's,${PREFIX}/${GEM_DOC_DIR},@dirrm ${GEM_DOC_DIR},' >> ${TMPPLIST}
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (rubygem/markaby-0.5.gem) = a2e3e48cd069282b329820091eef3877
SHA256 (rubygem/markaby-0.5.gem) = bc9e288b43328dbc008d15866b4c01510d94f6903252f0260e3f6e099e7304ac
SIZE (rubygem/markaby-0.5.gem) = 24576

View File

@ -0,0 +1,4 @@
Markaby is a templating language for Ruby, with a plugin for Rails,
which allows you to write HTML templates in pure-Ruby (a la Builder.)
WWW: http://markaby.rubyforge.org/