mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
dc8eb9b189
With hat: ruby@
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
# Created by: Shin'ya Murakami <murakami@ahs.scitec.kobe-u.ac.jp>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= numru_units
|
|
PORTVERSION= 1.7
|
|
CATEGORIES= math ruby
|
|
MASTER_SITES= http://ruby.gfd-dennou.org/products/numru-units/release/ \
|
|
http://dennou-h.gfd-dennou.org/library/ruby/products/numru-units/release/ \
|
|
http://dennou-q.gfd-dennou.org/library/ruby/products/numru-units/release/
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DISTNAME= numru-units-${PORTVERSION}
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= murashin@gfd-dennou.org
|
|
COMMENT= Class to handle units of physical quantities for Ruby
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
USE_RUBY= yes
|
|
NO_BUILD= yes
|
|
|
|
DOCS= ChangeLog LICENSE.txt doc/units.html doc/units.rd
|
|
|
|
do-install:
|
|
@cd ${WRKSRC}/ && ${RUBY} ./install.rb -d ${STAGEDIR}${RUBY_SITELIBDIR}
|
|
@${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}
|
|
.for f in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${RUBY_VER} >= 2.0
|
|
BROKEN= Does not build with Ruby 2.0 or newer
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|