Skip to content

Commit

Permalink
feat: add scons build system script
Browse files Browse the repository at this point in the history
  • Loading branch information
1995parham committed Aug 16, 2023
1 parent eac8d9a commit 852f5b0
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions scripts/scons.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#!/bin/bash
usage() {
echo "SCons is an Open Source software construction tool. Think of SCons as an improved, cross-platform substitute
for the classic Make utility with integrated functionality similar to autoconf/automake
and compiler caches such as ccache."

# shellcheck disable=1004,2016
echo '
___ ___ ___ _ __ ___
/ __|/ __/ _ \| |_ \/ __|
\__ \ (_| (_) | | | \__ \
|___/\___\___/|_| |_|___/
'
}

main_pacman() {
require_pacman scons
}

main_apt() {
return 1
}

main_brew() {
return 1
}

main() {
return 0
}

main_parham() {
return 0
}

0 comments on commit 852f5b0

Please sign in to comment.