7e59c78f3e
Closes: #12821 [via git-merge-pr]
32 lines
900 B
Bash
32 lines
900 B
Bash
# Template file for 'go-ipfs'
|
|
pkgname=go-ipfs
|
|
version=0.4.14
|
|
revision=1
|
|
create_wrksrc=yes
|
|
build_wrksrc=${pkgname}-${version}
|
|
build_style=go
|
|
hostmakedepends="gx-go"
|
|
go_import_path="github.com/ipfs/${pkgname}"
|
|
go_package="${go_import_path}/cmd/ipfs"
|
|
depends="fs-repo-migrations>=1.3.0"
|
|
short_desc="Global versioned P2P merkle DAG file system"
|
|
maintainer="Christopher Brannon <chris@the-brannons.com>"
|
|
license="MIT"
|
|
homepage="https://ipfs.io"
|
|
distfiles="https://${go_import_path}/archive/v${version}.tar.gz"
|
|
checksum=90b9033b4bedeec372f104209bbcb97701f4a3861baf9bf18ed90af3339388d8
|
|
|
|
pre_build() {
|
|
# Disable the dynamic plugin loader for now; breaks cross.
|
|
if [ "$CROSS_BUILD" ]; then
|
|
rm plugin/loader/load_linux.go
|
|
fi
|
|
gx install
|
|
}
|
|
|
|
post_install() {
|
|
vinstall misc/completion/ipfs-completion.bash 644 usr/share/bash-completion/completions ipfs
|
|
vlicense LICENSE
|
|
vdoc README.md
|
|
vdoc CHANGELOG.md
|
|
}
|