pkgsrc/devel/ruby-mustache/Makefile
taca 2b60dd6974 devel/ruby-mustache: update to 1.1.0
1.1.0 (2018-10-13)

* [feat] Introduces Mustache#escape.
* This method receives a non-stringified value to allow for more flexibility
  in the escaping, like JSON. (#245)
* [bug] Raise correct error when closing unopened section (#240)
* [bug] Fix use of deprecated File.exists? (#241)
* [bug] Fix variable shadowing warning (#241)
2019-02-25 14:53:05 +00:00

21 lines
673 B
Makefile

# $NetBSD: Makefile,v 1.2 2019/02/25 14:53:05 taca Exp $
DISTNAME= mustache-1.1.0
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME}
CATEGORIES= devel
MAINTAINER= nils@NetBSD.org
HOMEPAGE= https://mustache.github.io/
COMMENT= Logic-less Ruby templates
LICENSE= mit
RUBYGEM_OPTIONS+= --format-executable
INSTALLATION_DIRS+= ${PKGMANDIR}/man1 ${PKGMANDIR}/man5
post-install:
${LN} -sf ${PREFIX}/${GEM_LIBDIR}/man/mustache.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/${RUBY_PKGPREFIX}-mustache.1
${LN} -sf ${PREFIX}/${GEM_LIBDIR}/man/mustache.5 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5/${RUBY_PKGPREFIX}-mustache.5
.include "../../lang/ruby/gem.mk"
.include "../../mk/bsd.pkg.mk"