blob: 4dbc41b1a82d050e3b1769d0cfcf9850450b27f0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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>
|