libgocryptfs/build.bash

64 lines
1.7 KiB
Bash
Raw Normal View History

#!/bin/bash
set -eu
cd "$(dirname "$0")"
# Starting with Go v1.8, GOPATH may be unset. $HOME/go is used instead.
if [[ -z ${GOPATH:-} ]] ; then
GOPATH1=$HOME/go
else
# GOPATH may contain multiple paths separated by ":"
GOPATH1=$(echo $GOPATH | cut -f1 -d:)
fi
# gocryptfs version according to git
GITVERSION=$(git describe --tags --dirty)
# go-fuse version according to git
# Note: git in CentOS 7 does not have "git -C" yet. That's why we use
# plain "cd" in a subshell.
GITVERSIONFUSE=$(
cd $GOPATH1/src/github.com/hanwen/go-fuse
SHORT=$(git rev-parse --short HEAD)
if [[ $SHORT == 5e829bc ]] ; then
echo "Error: The version $SHORT of the go-fuse library has a known crasher that" >&2
echo "has been fixed by https://github.com/hanwen/go-fuse/pull/131 . Please upgrade." >&2
exit 1
fi
# Check if the tree is dirty, adapted from
# http://stackoverflow.com/a/2659808/1380267
if ! git diff-index --quiet HEAD ; then
echo $SHORT-dirty
else
echo $SHORT
fi
)
# Build Unix timestamp, something like 1467554204.
BUILDTIME=$(date +%s)
# Make sure we have the go binary
go version > /dev/null
2017-02-19 20:27:29 +01:00
# Go 1.5 changed the CLI syntax. Let's also support 1.3 and 1.4.
# "go version go1.6.2 linux/amd64" -> "1.6"
V=$(go version | cut -d" " -f3 | cut -c3-5)
if [[ $V == "1.3" || $V == "1.4" ]] ; then
2017-02-19 20:27:29 +01:00
LDFLAGS="-X main.GitVersion $GITVERSION -X main.GitVersionFuse $GITVERSIONFUSE -X main.BuildTime $BUILDTIME"
else
2017-02-19 20:27:29 +01:00
# Go 1.5+ wants an "=" here
LDFLAGS="-X main.GitVersion=$GITVERSION -X main.GitVersionFuse=$GITVERSIONFUSE -X main.BuildTime=$BUILDTIME"
fi
2017-02-19 20:27:29 +01:00
go build "-ldflags=$LDFLAGS" $@
(cd gocryptfs-xray; go build $@)
./gocryptfs -version
2016-01-09 15:31:34 +01:00
mkdir -p $GOPATH1/bin
cp -af gocryptfs $GOPATH1/bin