59 lines
1.2 KiB
Bash
59 lines
1.2 KiB
Bash
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
set -o pipefail
|
||
|
shopt -s nullglob # if no files match glob, assume empty list instead of string literal
|
||
|
|
||
|
## PACKAGE TO BUILD
|
||
|
Package=github.com/mholt/caddy
|
||
|
Extension=github.com/hacdias/caddy-hugo
|
||
|
|
||
|
## PATHS TO USE
|
||
|
DistDir=$GOPATH/src/$Extension/dist
|
||
|
BuildDir=$DistDir/builds
|
||
|
ReleaseDir=$DistDir/release
|
||
|
|
||
|
caddyext install hugo:github.com/hacdias/caddy-hugo
|
||
|
|
||
|
## BEGIN
|
||
|
|
||
|
# Compile binaries
|
||
|
mkdir -p $BuildDir
|
||
|
cd $BuildDir
|
||
|
rm -f caddy*
|
||
|
gox $Package
|
||
|
|
||
|
# Zip them up with release notes and stuff
|
||
|
mkdir -p $ReleaseDir
|
||
|
cd $ReleaseDir
|
||
|
rm -f caddy*
|
||
|
for f in $BuildDir/*
|
||
|
do
|
||
|
# Name .zip file same as binary, but strip .exe from end
|
||
|
zipname=$(basename ${f%".exe"})
|
||
|
if [[ $f == *"linux"* ]] || [[ $f == *"bsd"* ]]; then
|
||
|
zipname=${zipname}.tar.gz
|
||
|
else
|
||
|
zipname=${zipname}.zip
|
||
|
fi
|
||
|
|
||
|
# Binary inside the zip file is simply the project name
|
||
|
binbase=$(basename $Package)
|
||
|
if [[ $f == *.exe ]]; then
|
||
|
binbase=$binbase.exe
|
||
|
fi
|
||
|
bin=$BuildDir/$binbase
|
||
|
mv $f $bin
|
||
|
|
||
|
# Compress distributable
|
||
|
if [[ $zipname == *.zip ]]; then
|
||
|
zip -j $zipname $bin
|
||
|
else
|
||
|
tar -cvzf $zipname -C $BuildDir $binbase -C
|
||
|
fi
|
||
|
|
||
|
# Put binary filename back to original
|
||
|
mv $bin $f
|
||
|
done
|
||
|
|
||
|
caddyext remove hugo
|