Changes: https://github.com/rubygems/rubygems/releases https://github.com/rubygems/rubygems/blob/master/bundler/CHANGELOG.md
30 lines
648 B
Makefile
30 lines
648 B
Makefile
PORTNAME= bundler
|
|
PORTVERSION= 2.6.9
|
|
PORTEPOCH= 1
|
|
CATEGORIES= sysutils rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= ruby@FreeBSD.org
|
|
COMMENT= Tool that manages gem dependencies for Ruby applications
|
|
WWW= https://bundler.io/ \
|
|
https://github.com/rubygems/rubygems/tree/master/bundler
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.md
|
|
|
|
USES= cpe gem
|
|
|
|
NO_ARCH= yes
|
|
|
|
CONFLICTS_INSTALL= go-tools # bin/bundle
|
|
|
|
post-install:
|
|
.for i in 1 5
|
|
for f in ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/lib/bundler/man/*.${i}; do \
|
|
${GZIP_CMD} $${f}; \
|
|
${RLN} $${f}.gz ${STAGEDIR}${PREFIX}/share/man/man${i}/$$(basename $${f}).gz; \
|
|
done
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|