1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-30 10:38:37 +00:00

sysutils/ipfs-go: Changed binary name to bin/ipfs-go

Reasons:
* Binary conflict with /sbin/ipfs on trueos
* Binary name mismatch with the rc script

PR:		225866
Submitted by:	jhixson@gmail.com (maintainer)
Approved by:	tcberner (mentor, implicit)
This commit is contained in:
Yuri Victorovich 2018-02-20 21:32:18 +00:00
parent c7c22485ec
commit 979361e277
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=462454

View File

@ -3,6 +3,7 @@
PORTNAME= ipfs
PORTVERSION= 0.4.13
DISTVERSIONPREFIX= v
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= https://dist.ipfs.io/go-ipfs/${DISTVERSIONPREFIX}${DISTVERSION}/
PKGNAMESUFFIX= -go
@ -15,7 +16,7 @@ LICENSE= MIT
ONLY_FOR_ARCHS= amd64
PLIST_FILES= bin/${PORTNAME}
PLIST_FILES= bin/${PORTNAME}${PKGNAMESUFFIX}
NO_BUILD= yes
WRKSRC= ${WRKDIR}/go-ipfs
@ -23,6 +24,6 @@ WRKSRC= ${WRKDIR}/go-ipfs
USE_RC_SUBR= ${PORTNAME}${PKGNAMESUFFIX}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ipfs ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
${INSTALL_PROGRAM} ${WRKSRC}/ipfs ${STAGEDIR}${PREFIX}/bin/${PORTNAME}${PKGNAMESUFFIX}
.include <bsd.port.mk>