mirror of
https://github.com/rclone/rclone.git
synced 2024-11-24 17:34:57 +01:00
Script to cross compile rclone
This commit is contained in:
parent
2a4c721794
commit
fec3661fe1
28
cross-compile
Executable file
28
cross-compile
Executable 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 )
|
Loading…
Reference in New Issue
Block a user