[+] Package fastfetch into hyfetch

This commit is contained in:
Azalea Gui 2024-04-23 08:31:23 -04:00
parent 81f4dc90e8
commit a385480d89
2 changed files with 84 additions and 14 deletions

21
tools/build_bash.sh Normal file → Executable file
View file

@ -1,19 +1,28 @@
#!/usr/bin/env bash
# This script is used to build a customized Git Bash for windows pacakge that only include bash and no other unnecessary files
set -e
# Get script directory
DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
cd $DIR/../dist
cd "$DIR/../dist"
# Get the git distribution if it doesn't exist
if [ ! -f git.tar.bz2 ]; then
if [ ! -f /tmp/git.tar.bz2 ]; then
# NOTE: Git for Windows v2.44 is the last release to support Windows 7 and 8
URL="https://github.com/git-for-windows/git/releases/download/v2.44.0.windows.1/Git-2.44.0-32-bit.tar.bz2"
wget $URL -O git.tar.bz2
echo "> Downloading git distribution"
wget -q $URL -O /tmp/git.tar.bz2
fi
# Unzip the git distribution to git directory
# Ignore the unnecessary files
rm -rf git
mkdir git
tar -xvf git.tar.bz2 -C git --exclude-from="$DIR/bash_ignore.txt"
# rm -rf git
if [ ! -d /tmp/git ]; then
mkdir -p /tmp/git
echo "> Unzipping git distribution"
tar -xf /tmp/git.tar.bz2 --exclude-from="$DIR/bash_ignore.txt" -C /tmp/git
fi
# Copy the git distribution
cp -r /tmp/git ./git