Script to cross compile rclone

s3-about
Nick Craig-Wood 2014-03-15 17:40:35 +00:00
parent 2a4c721794
commit fec3661fe1
1 changed files with 28 additions and 0 deletions

28
cross-compile Executable file
View File

@ -0,0 +1,28 @@
#!/bin/sh
# This uses gox from https://github.com/mitchellh/gox
# Make sure you've run gox -build-toolchain
rm -rf build
gox -output "build/{{.OS}}/{{.Arch}}/{{.Dir}}"
cat <<'#EOF' > build/README.txt
This directory contains builds of the rclone program.
Rclone a program designed to stress test your disks and find
failures in them.
Use it to soak test your new disks / memory cards / USB sticks before
trusting your valuable data to it.
See the project website here: https://github.com/ncw/rclone for
more details.
The files in this directory are organised by OS and processor type
#EOF
mv build/darwin build/osx
( cd build ; tree . >> README.txt )