2015-02-04 16:22:38 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
rm -rf autogen
|
2015-03-03 14:41:26 -05:00
|
|
|
|
2015-11-09 13:32:46 -05:00
|
|
|
cat > dockerversion/version_autogen.go <<DVEOF
|
|
|
|
// +build autogen
|
2015-11-26 07:16:39 -05:00
|
|
|
|
2015-11-30 03:34:07 -05:00
|
|
|
// Package dockerversion is auto-generated at build-time
|
2015-10-27 21:19:14 -04:00
|
|
|
package dockerversion
|
2015-02-04 16:22:38 -05:00
|
|
|
|
2015-11-09 13:32:46 -05:00
|
|
|
// Default build-time variable for library-import.
|
|
|
|
// This file is overridden on build with build-time informations.
|
|
|
|
const (
|
|
|
|
GitCommit string = "$GITCOMMIT"
|
|
|
|
Version string = "$VERSION"
|
|
|
|
BuildTime string = "$BUILDTIME"
|
|
|
|
IAmStatic string = "${IAMSTATIC:-true}"
|
2015-02-04 16:22:38 -05:00
|
|
|
)
|
2015-11-09 13:32:46 -05:00
|
|
|
// AUTOGENERATED FILE; see $BASH_SOURCE
|
2015-05-06 11:41:17 -04:00
|
|
|
DVEOF
|
|
|
|
|
|
|
|
# Compile the Windows resources into the sources
|
|
|
|
mkdir -p autogen/winresources
|
|
|
|
cat > autogen/winresources/resources.go <<WREOF
|
2015-11-30 03:34:07 -05:00
|
|
|
// Package winresources is auto-generated at build-time
|
2015-05-06 11:41:17 -04:00
|
|
|
// AUTOGENERATED FILE; see $BASH_SOURCE
|
|
|
|
package winresources
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
This package is for embedding a manifest file and an icon into docker.exe.
|
|
|
|
The benefit of this is that a manifest file does not need to be alongside
|
|
|
|
the .exe, and there is an icon when docker runs, or viewed through Windows
|
|
|
|
explorer.
|
|
|
|
|
|
|
|
When make binary is run, the Dockerfile prepares the build environment by:
|
|
|
|
|
|
|
|
- Cloning github.com/akavel/rsrc
|
|
|
|
|
|
|
|
- Go-installing the rsrc executable
|
|
|
|
|
|
|
|
make.sh invokes hack/make/.go-autogen to:
|
|
|
|
|
2016-01-20 06:53:54 -05:00
|
|
|
- Run rsrc to create a binary file (autogen/winresources/rsrc.syso) that
|
|
|
|
contains the manifest and icon. This file is automatically picked up by
|
|
|
|
'go build', so no post-processing steps are required. The sources for
|
2015-05-06 11:41:17 -04:00
|
|
|
rsrc.syso are under hack/make/.resources-windows.
|
|
|
|
|
|
|
|
*/
|
|
|
|
WREOF
|
|
|
|
if [ "$(go env GOOS)" = 'windows' ]; then
|
|
|
|
rsrc \
|
|
|
|
-manifest hack/make/.resources-windows/docker.exe.manifest \
|
|
|
|
-ico hack/make/.resources-windows/docker.ico \
|
2016-01-13 19:27:53 -05:00
|
|
|
-arch "amd64" \
|
|
|
|
-o autogen/winresources/rsrc_amd64.syso > /dev/null
|
|
|
|
|
|
|
|
rsrc \
|
|
|
|
-manifest hack/make/.resources-windows/docker.exe.manifest \
|
|
|
|
-ico hack/make/.resources-windows/docker.ico \
|
|
|
|
-arch "386" \
|
|
|
|
-o autogen/winresources/rsrc_386.syso > /dev/null
|
2015-05-06 11:41:17 -04:00
|
|
|
fi
|