37 lines
1.2 KiB
Bash
37 lines
1.2 KiB
Bash
# Template file for 'go-ipfs'
|
|
pkgname=go-ipfs
|
|
version=0.4.8
|
|
revision=2
|
|
create_wrksrc=yes
|
|
build_wrksrc=${pkgname}-${version}
|
|
build_style=go
|
|
go_import_path="github.com/ipfs/${pkgname}"
|
|
go_package="${go_import_path}/cmd/ipfs"
|
|
depends="fs-repo-migrations>=1.2.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
|
|
http://the-brannons.com/ipfs-gx-deps-${version}.tar.xz"
|
|
checksum="a5b5556374b30d162e79858f8ead475d7d073a6f862d6fb85afa6148c62541fa
|
|
19ba225a56c7238ea8b304222f623db14f0b6294cd86e4eb23baf43e54d7cb12"
|
|
|
|
do_build() {
|
|
local path="${GOPATH}/src/${go_import_path}"
|
|
mkdir -p "$(dirname ${path})"
|
|
ln -fs $PWD "${path}"
|
|
# I fetch all the deps with gx locally and bundle them in a tarball,
|
|
# so that we don't have to deal with packaging gx.
|
|
ln -s "${wrksrc}/ipfs-gx-deps-${version}/src/gx" "${GOPATH}/src"
|
|
cd cmd/ipfs
|
|
go build
|
|
}
|
|
|
|
do_install() {
|
|
vbin cmd/ipfs/ipfs
|
|
vinstall misc/completion/ipfs-completion.bash 644 usr/share/bash-completion/completions ipfs
|
|
vlicense LICENSE
|
|
vdoc README.md
|
|
vdoc CHANGELOG.md
|
|
}
|