void-packages/srcpkgs/go-ipfs/template
2020-02-20 10:03:02 +01:00

30 lines
919 B
Bash

# Template file for 'go-ipfs'
pkgname=go-ipfs
version=0.4.23
revision=1
build_style=go
go_import_path="github.com/ipfs/${pkgname}"
go_package="${go_import_path}/cmd/ipfs"
hostmakedepends="git"
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, Apache-2.0"
homepage="https://ipfs.io"
changelog="https://github.com/ipfs/go-ipfs/blob/master/CHANGELOG.md"
distfiles="https://${go_import_path}/archive/v${version}.tar.gz"
checksum=21a7b7bfe822d5c6a64c4848eebd6f25f18ad4c94acdd0bbb56235c7c13d38c3
pre_build() {
# Disable the dynamic plugin loader for now; breaks cross.
if [ "$CROSS_BUILD" ]; then
rm plugin/loader/load_linux.go
fi
}
post_install() {
vinstall misc/completion/ipfs-completion.bash 644 usr/share/bash-completion/completions ipfs
vlicense LICENSE-MIT
vdoc README.md
vdoc CHANGELOG.md
}