summaryrefslogtreecommitdiffstats
path: root/release.sh
blob: 4db29ba84128204d632e195f77bd90ab5837c9a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# build a new release of broot
# This isn't used for normal compilation (see https://dystroy.org/broot for instruction)
# but for the building of the official releases
version=$(sed 's/version = "\([0-9.]\{1,\}\)"/\1/;t;d' Cargo.toml | head -1)

echo "Building release $version"

# make the build directory and compile for all targets
./compile-all-targets.sh

# add the readme and changelog in the build directory
echo "This is broot. More info and installation instructions on https://dystroy.org/broot" > build/README.md
cp CHANGELOG.md build

# add the man page and fix its date and version
cp man/page build/broot.1
sed -i "s/#version/$version/g" build/broot.1
sed -i "s/#date/$(date +'%Y\/%m\/%d')/g" build/broot.1

# prepare the release archive
rm broot_*.zip
zip -r "broot_$version.zip" build/*

# copy it to releases folder
mkdir releases
cp "broot_$version.zip" releases