mirror of
https://git.freebsd.org/ports.git
synced 2025-07-12 23:09:19 -04:00
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)
29 lines
631 B
Makefile
29 lines
631 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= ipfs
|
|
PORTVERSION= 0.4.13
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://dist.ipfs.io/go-ipfs/${DISTVERSIONPREFIX}${DISTVERSION}/
|
|
PKGNAMESUFFIX= -go
|
|
DISTNAME= go-ipfs_${DISTVERSIONPREFIX}${DISTVERSION}_freebsd-${ARCH}
|
|
|
|
MAINTAINER= jhixson@gmail.com
|
|
COMMENT= IPFS implementation in Go
|
|
|
|
LICENSE= MIT
|
|
|
|
ONLY_FOR_ARCHS= amd64
|
|
|
|
PLIST_FILES= bin/${PORTNAME}${PKGNAMESUFFIX}
|
|
|
|
NO_BUILD= yes
|
|
WRKSRC= ${WRKDIR}/go-ipfs
|
|
|
|
USE_RC_SUBR= ${PORTNAME}${PKGNAMESUFFIX}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ipfs ${STAGEDIR}${PREFIX}/bin/${PORTNAME}${PKGNAMESUFFIX}
|
|
|
|
.include <bsd.port.mk>
|