2014-03-15 18:40:35 +01:00
|
|
|
#!/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.
|
|
|
|
|
2014-03-16 20:55:13 +01:00
|
|
|
Rclone is a program to transfer files to and from cloud storage
|
|
|
|
systems such as Google Drive, Amazon S3 and Swift (Rackspace
|
|
|
|
Cloudfiles).
|
2014-03-15 18:40:35 +01:00
|
|
|
|
2014-03-16 20:55:13 +01:00
|
|
|
See the project website here: https://github.com/ncw/rclone for more
|
|
|
|
details.
|
2014-03-15 18:40:35 +01:00
|
|
|
|
|
|
|
The files in this directory are organised by OS and processor type
|
|
|
|
|
|
|
|
#EOF
|
|
|
|
|
|
|
|
mv build/darwin build/osx
|
|
|
|
|
|
|
|
( cd build ; tree . >> README.txt )
|