libgocryptfs/build.bash

77 lines
2.1 KiB
Bash
Raw Normal View History

#!/bin/bash -eu
#
# Compile gocryptfs and bake the git version string of itself and the go-fuse
# library into the binary.
#
# If you want to fake a build date to reproduce a specific build,
# you can use:
# BUILDDATE=2017-02-03 ./build.bash
cd "$(dirname "$0")"
MYDIR=$PWD
# Make sure we have the go binary
go version > /dev/null
2017-02-19 20:14:46 +01:00
# GOPATH may contain multiple paths separated by ":"
GOPATH1=$(go env GOPATH | cut -f1 -d:)
2017-11-01 18:58:10 +01:00
if [[ $PWD != *"/src/github.com/rfjakob/gocryptfs" ]] ; then
echo "Warning: Building outside of GOPATH will most likely fail."
echo " Please rename $PWD to $GOPATH1/src/github.com/rfjakob/gocryptfs ."
sleep 5
echo
fi
# gocryptfs version according to git or a VERSION file
if [[ -d .git ]] ; then
GITVERSION=$(git describe --tags --dirty)
elif [[ -f VERSION ]] ; then
GITVERSION=$(cat VERSION)
else
echo "Warning: could not determine gocryptfs version"
GITVERSION="[unknown]"
fi
# go-fuse version, if available
if [[ -d vendor/github.com/hanwen/go-fuse ]] ; then
GITVERSIONFUSE="[vendored]"
else
# go-fuse version according to git
# Note: git in CentOS 7 does not have "git -C" yet, so we use plain "cd".
FAIL=0
cd $GOPATH1/src/github.com/hanwen/go-fuse
OUT=$(git describe --tags --dirty 2>&1) || FAIL=1
if [[ $FAIL -eq 0 ]]; then
GITVERSIONFUSE=$OUT
else
echo "$PWD: git describe: $OUT"
echo "Warning: could not determine go-fuse version"
GITVERSIONFUSE="[unknown]"
fi
cd "$MYDIR"
fi
# Build date, something like "2017-09-06". Don't override BUILDDATE
# if it is already set. This may be done for reproducible builds.
if [[ -z ${BUILDDATE:-} ]] ; then
BUILDDATE=$(date +%Y-%m-%d)
fi
# If SOURCE_DATE_EPOCH is set, it overrides BUILDDATE. This is the
# standard environment variable for faking the date in reproducible builds.
if [[ -n ${SOURCE_DATE_EPOCH:-} ]] ; then
BUILDDATE=$(date --utc --date="@${SOURCE_DATE_EPOCH}" +%Y-%m-%d)
fi
LDFLAGS="-X main.GitVersion=$GITVERSION -X main.GitVersionFuse=$GITVERSIONFUSE -X main.BuildDate=$BUILDDATE"
go build "-ldflags=$LDFLAGS" "$@"
2017-02-19 20:27:29 +01:00
(cd gocryptfs-xray; go build "$@")
./gocryptfs -version
2016-01-09 15:31:34 +01:00
mkdir -p $GOPATH1/bin
cp -af gocryptfs $GOPATH1/bin