mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
36 lines
864 B
Bash
Executable File
36 lines
864 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# This uses gox from https://github.com/mitchellh/gox
|
|
# Make sure you've run gox -build-toolchain - not required for go >= 1.5
|
|
|
|
if [ "$1" == "" ]; then
|
|
echo "Syntax: $0 Version"
|
|
exit 1
|
|
fi
|
|
VERSION="$1"
|
|
|
|
rm -rf build
|
|
|
|
gox -output "build/{{.Dir}}-${VERSION}-{{.OS}}-{{.Arch}}/{{.Dir}}" -os "darwin linux freebsd openbsd windows freebsd netbsd plan9 solaris"
|
|
# Not implemented yet: nacl dragonfly android
|
|
# gox -osarch-list for definitive list
|
|
|
|
mv build/rclone-${VERSION}-darwin-amd64 build/rclone-${VERSION}-osx-amd64
|
|
mv build/rclone-${VERSION}-darwin-386 build/rclone-${VERSION}-osx-386
|
|
|
|
cd build
|
|
|
|
for d in `ls`; do
|
|
cp -a ../MANUAL.txt $d/README.txt
|
|
cp -a ../MANUAL.html $d/README.html
|
|
cp -a ../rclone.1 $d/
|
|
zip -r9 $d.zip $d
|
|
d_current=${d/-${VERSION}/-current}
|
|
ln $d.zip $d_current.zip
|
|
rm -rf $d
|
|
done
|
|
|
|
cd ..
|