sherpa/INSTALL.sh

19 lines
688 B
Bash
Raw Permalink Normal View History

2022-03-07 12:25:48 -05:00
#!/bin/sh
# Sherpa installation script
# This script compiles the Sherpa source files into executable binaries, and moves them into their appropriate locations
echo "Compiling Sherpa..."
2022-03-07 12:50:38 -05:00
gcc -O2 -Wall $(pkg-config --cflags vte-2.91) sherpa.c -o sherpa $(pkg-config --libs vte-2.91) # Compile main Sherpa binary
2022-03-07 12:25:48 -05:00
echo "CC sherpa.c"
2022-03-07 12:48:39 -05:00
mv sherpa /usr/bin
2022-03-07 16:27:59 -05:00
echo "+---------------------------------------------------+"
echo "| Sherpa was successfully installed. |"
echo "| To update Sherpa, run the UPDATE.sh script. |"
echo "| To uninstall Sherpa, run the UNINSTALL.sh script. |"
echo "+---------------------------------------------------+"
2022-03-07 12:51:36 -05:00
# //
# //
# //
# //
# //