Create INSTALL.sh

This commit is contained in:
everest 2022-03-07 17:25:48 +00:00 committed by GitHub
parent 07eb9004c0
commit 764bcb6628
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
INSTALL.sh Normal file
View File

@ -0,0 +1,13 @@
#!/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..."
gcc -O2 -Wall $(pkg-config --cflags vte-2.91) sherpa.c -o Sherpa $(pkg-config --libs vte-2.91) # Compile main Sherpa binary
echo "CC sherpa.c"
echo "Compiling sherpa-version..."
gcc -O2 -Wall sherpa-version.c # Compile Sherpa version script
echo "CC sherpa-version.c"
cp a.out sherpa-version.c
mv sherpa /usr/bin
mv sherpa-version /usr/bin