void-packages/srcpkgs/go-ipfs/template

37 lines
1.1 KiB
Bash
Raw Normal View History

# Template file for 'go-ipfs'
pkgname=go-ipfs
2016-05-22 05:36:18 +00:00
version=0.4.2
revision=1
2016-04-27 15:31:00 +00:00
create_wrksrc=yes
build_wrksrc=${pkgname}-${version}
build_style=go
go_import_path="github.com/ipfs/${pkgname}"
go_package="${go_import_path}/cmd/ipfs"
short_desc="Global versioned P2P merkle DAG file system"
maintainer="Christopher Brannon <chris@the-brannons.com>"
license="MIT"
homepage="https://ipfs.io"
2016-04-27 15:31:00 +00:00
distfiles="https://${go_import_path}/archive/v${version}.tar.gz
2016-05-22 05:36:18 +00:00
http://the-brannons.com/ipfs-gx-deps-${version}.tar.xz"
checksum="ade066235006411e688c7be2087ad1fc43ca4291a95cecf208a53f6032b70a55
8df94a35069e38b841bc5f79a1e83d60188e42d83086b43f8b7de6b5fd5cf9bd"
2016-02-19 20:33:47 +00:00
do_build() {
2016-04-27 15:31:00 +00:00
local path="${GOPATH}/src/${go_import_path}"
mkdir -p "$(dirname ${path})"
ln -fs $PWD "${path}"
2016-05-22 05:36:18 +00:00
# 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"
2016-04-27 15:31:00 +00:00
cd cmd/ipfs
go build
2016-02-19 20:33:47 +00:00
}
2016-04-27 15:31:00 +00:00
do_install() {
vbin cmd/ipfs/ipfs
vinstall misc/completion/ipfs-completion.bash 644 usr/share/bash-completion/completions ipfs
vlicense LICENSE
vdoc README.md
2016-04-27 15:31:00 +00:00
vdoc CHANGELOG.md
}