void-packages/srcpkgs/syncthing/template

36 lines
918 B
Text
Raw Normal View History

2014-12-26 16:21:09 +00:00
# Template file for 'syncthing'
pkgname=syncthing
version=0.10.13
revision=1
hostmakedepends="go>=1.3"
if [ "$CROSS_BUILD" ]; then
hostmakedepends+=" go-cross-linux"
fi
short_desc="Open Source Continuous File Synchronization"
maintainer="Duncan Overbruck <mail@duncano.de>"
license="GPL-3"
homepage="http://syncthing.net/"
distfiles="https://github.com/syncthing/${pkgname}/archive/v${version}.tar.gz"
checksum=19d0d72eac7af99714c047677d892559a8d4c96c73ef5ba50a48cec44a03def2
do_build() {
case "$XBPS_TARGET_MACHINE" in
armv6*) export GOARCH=arm; export GOARM=6;;
armv7*) export GOARCH=arm; export GOARM=7;;
i686*) export GOARCH=386;;
x86_64*) export GOARCH=amd64;;
esac
2014-12-26 17:45:15 +00:00
export GOPATH="${PWD}/gopath"
mkdir -p $GOPATH/src/github.com/syncthing
ln -s $PWD $GOPATH/src/github.com/syncthing/${pkgname}
2014-12-26 16:21:09 +00:00
go run build.go -no-upgrade
}
do_install() {
2014-12-26 17:45:15 +00:00
vbin bin/syncthing
vlicense LICENSE
vdoc README.md
2014-12-26 16:21:09 +00:00
}